diff options
author | RoastVeg <RoastVeg@users.noreply.github.com> | 2020-06-20 17:57:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 17:57:41 +0100 |
commit | 6298426d9ad4c59a875b0a90a0facfa1a3a513cc (patch) | |
tree | 542386bd071b5b5b5b87ec9ad65668745eabc0c4 /include/string16.h | |
parent | 53ac396de4098e38a6916e0cc86cbd278a960c4c (diff) | |
parent | 16b091058e6135f9b7875fcf074d812d610df380 (diff) |
Merge branch 'master' into master
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 |