2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 16:24:55 +00:00

Update boo

This commit is contained in:
Jack Andersen
2016-01-22 17:38:51 -10:00
parent 4bf50c8c8d
commit 3c0ae75aa2
2 changed files with 10 additions and 1 deletions

2
hecl/extern/libBoo vendored

Submodule hecl/extern/libBoo updated: c499a29e90...147115b6ac

View File

@@ -379,6 +379,15 @@ static inline int StrCmp(const SystemChar* str1, const SystemChar* str2)
#endif
}
static inline int StrCaseCmp(const SystemChar* str1, const SystemChar* str2)
{
#if HECL_UCS2
return _wcsicmp(str1, str2);
#else
return strcasecmp(str1, str2);
#endif
}
#define FORMAT_BUF_SZ 1024
#if __GNUC__