mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-22 02:05:55 -05:00
12 lines
355 B
C
12 lines
355 B
C
#ifndef POKEPLATINUM_CHARCODE_H
|
|
#define POKEPLATINUM_CHARCODE_H
|
|
|
|
typedef u16 charcode_t;
|
|
|
|
charcode_t *CharCode_SkipFormatArg(const charcode_t *cstr);
|
|
u32 CharCode_FormatArgType(const charcode_t *cstr);
|
|
BOOL CharCode_IsFormatArg(const charcode_t *cstr);
|
|
u32 CharCode_FormatArgParam(const charcode_t *cstr, u32 paramIdx);
|
|
|
|
#endif // POKEPLATINUM_CHARCODE_H
|