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 /arm9/src/string_util.c | |
parent | 01c4d4b1858149c2da1ce76368ac861f16fd066d (diff) | |
parent | ae9380cad03effaef52810db07105ca3f2c1a3f8 (diff) |
Merge pull request #179 from PikalaxALT/pikalax_work
msgdata
Diffstat (limited to 'arm9/src/string_util.c')
-rw-r--r-- | arm9/src/string_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arm9/src/string_util.c b/arm9/src/string_util.c index 54ad61fc..19ed5fa3 100644 --- a/arm9/src/string_util.c +++ b/arm9/src/string_util.c @@ -32,7 +32,7 @@ const s32 gPowersOfTen[] = { 1000000000,
};
-THUMB_FUNC void StringCopy(u16 *dest, const u16 *src)
+THUMB_FUNC void CopyU16StringArray(u16 *dest, const u16 *src)
{
u16 c = *src;
while (c != EOS) {
@@ -44,7 +44,7 @@ THUMB_FUNC void StringCopy(u16 *dest, const u16 *src) *dest = EOS;
}
-THUMB_FUNC u16 *StringCopyN(u16 *dest, const u16 *src, u32 num)
+THUMB_FUNC u16 *CopyU16StringArrayN(u16 *dest, const u16 *src, u32 num)
{
u32 copied = 0;
if (num > copied) {
|