mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-20 18:58:12 -05:00
15 lines
247 B
C
15 lines
247 B
C
#ifndef POKEHEARTGOLD_STRING_H
|
|
#define POKEHEARTGOLD_STRING_H
|
|
|
|
typedef struct STRING {
|
|
u16 maxsize;
|
|
u16 size;
|
|
u32 magic;
|
|
u16 data[1];
|
|
u8 padding[2];
|
|
} STRING;
|
|
|
|
void String_dtor(STRING *string);
|
|
|
|
#endif //POKEHEARTGOLD_STRING_H
|