mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
17 lines
214 B
C
17 lines
214 B
C
#ifndef M_STRING_H
|
|
#define M_STRING_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void mString_Load_StringFromRom(u8* buf, size_t buf_size, u32 str_no);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|