diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-20 12:13:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 12:13:15 -0400 |
commit | 16b091058e6135f9b7875fcf074d812d610df380 (patch) | |
tree | 3e766233037a6058d704f695204ff3e23e7edac8 /include/string16.h | |
parent | 01c4d4b1858149c2da1ce76368ac861f16fd066d (diff) | |
parent | ae9380cad03effaef52810db07105ca3f2c1a3f8 (diff) |
Merge pull request #179 from PikalaxALT/pikalax_work
msgdata
Diffstat (limited to 'include/string16.h')
-rw-r--r-- | include/string16.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/string16.h b/include/string16.h index 7092c641..91888a7b 100644 --- a/include/string16.h +++ b/include/string16.h @@ -10,8 +10,11 @@ struct String u16 data[1]; }; -struct String * FUN_020219F4(u32 count, u32 heap_id); +struct String * String_ctor(u32 count, u32 heap_id); int FUN_02021CE0(struct String *, struct String *); int FUN_0206AE00(int x); +void FUN_02021E8C(struct String *, u16 *, u32); // copy +void StringSetEmpty(struct String *); // set empty +struct String * StringDup(struct String *, u32 heap_id); #endif //POKEDIAMOND_STRING16_H |