From 1386f29730b42a640fde1d568255dc10be4ac759 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Sat, 20 Jun 2020 09:18:15 -0400 Subject: Name methods in msgdata.c and unk_02021934.s aka string16.s --- arm9/src/string_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm9/src/string_util.c') 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) { -- cgit v1.2.3