summaryrefslogtreecommitdiff
path: root/include/string_util.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2019-09-08 21:07:54 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2019-09-08 21:07:54 -0400
commit306ce048ad07d62bed2028bfc8f30c03f5bc8db7 (patch)
tree09dada0db49517542634aaf4058a613b350c9feb /include/string_util.h
parent95b805a425844175663f7f10b1b92df690a8b2c0 (diff)
Move gflib srcs and headers to gflib subdir
Diffstat (limited to 'include/string_util.h')
-rw-r--r--include/string_util.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/include/string_util.h b/include/string_util.h
deleted file mode 100644
index b921d2391..000000000
--- a/include/string_util.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef GUARD_STRING_UTIL_H
-#define GUARD_STRING_UTIL_H
-
-extern u8 gStringVar1[];
-extern u8 gStringVar2[];
-extern u8 gStringVar3[];
-extern u8 gStringVar4[];
-
-enum StringConvertMode
-{
- STR_CONV_MODE_LEFT_ALIGN,
- STR_CONV_MODE_RIGHT_ALIGN,
- STR_CONV_MODE_LEADING_ZEROS
-};
-
-u8 *StringCopy10(u8 *dest, const u8 *src);
-u8 *StringGetEnd10(u8 *str);
-u8 *StringCopy7(u8 *dest, const u8 *src);
-u8 *StringCopy(u8 *dest, const u8 *src);
-u8 *StringAppend(u8 *dest, const u8 *src);
-u8 *StringCopyN(u8 *dest, const u8 *src, u8 n);
-u8 *StringAppendN(u8 *dest, const u8 *src, u8 n);
-u16 StringLength(const u8 *str);
-s32 StringCompare(const u8 *str1, const u8 *str2);
-s32 StringCompareN(const u8 *str1, const u8 *str2, u32 n);
-bool8 IsStringLengthAtLeast(const u8 *str, s32 n);
-u8 *ConvertIntToDecimalStringN(u8 *dest, s32 value, enum StringConvertMode mode, u8 n);
-u8 *ConvertUIntToDecimalStringN(u8 *dest, u32 value, enum StringConvertMode mode, u8 n);
-u8 *ConvertIntToHexStringN(u8 *dest, s32 value, enum StringConvertMode mode, u8 n);
-u8 *StringExpandPlaceholders(u8 *dest, const u8 *src);
-u8 *StringBraille(u8 *dest, const u8 *src);
-const u8 *GetExpandedPlaceholder(u32 id);
-u8 *StringFill(u8 *dest, u8 c, u16 n);
-u8 *StringCopyPadded(u8 *dest, const u8 *src, u8 c, u16 n);
-u8 *StringFillWithTerminator(u8 *dest, u16 n);
-u8 *StringCopyN_Multibyte(u8 *dest, u8 *src, u32 n);
-u32 StringLength_Multibyte(const u8 *str);
-u8 *WriteColorChangeControlCode(u8 *dest, u32 colorType, u8 color);
-bool32 IsStringJapanese(u8 *str);
-bool32 sub_800924C(u8 *str, s32 n);
-u8 GetExtCtrlCodeLength(u8 code);
-s32 StringCompareWithoutExtCtrlCodes(const u8 *str1, const u8 *str2);
-void ConvertInternationalString(u8 *s, u8 language);
-void StripExtCtrlCodes(u8 *str);
-
-#endif // GUARD_STRING_UTIL_H