mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-03-22 01:36:12 -05:00
12 lines
357 B
C
12 lines
357 B
C
#ifndef HEARTGOLD_STRING_CONTROL_CODE_H
|
|
#define HEARTGOLD_STRING_CONTROL_CODE_H
|
|
|
|
#include "global.h"
|
|
|
|
const u16 *MsgArray_SkipControlCode(const u16 *arr);
|
|
int MsgArray_GetControlCode(const u16 *arr);
|
|
BOOL MsgArray_ControlCodeIsStrVar(const u16 *arr);
|
|
int MsgArray_ControlCodeGetField(const u16 *arr, u32 fieldno);
|
|
|
|
#endif // HEARTGOLD_STRING_CONTROL_CODE_H
|