mirror of https://github.com/AxioDL/metaforce.git
Update boo
This commit is contained in:
parent
4bf50c8c8d
commit
3c0ae75aa2
|
@ -1 +1 @@
|
||||||
Subproject commit c499a29e90b7aafabd24cfb09e844b8404af077d
|
Subproject commit 147115b6ac56f04dc49b030aca3f1356a8efa484
|
|
@ -379,6 +379,15 @@ static inline int StrCmp(const SystemChar* str1, const SystemChar* str2)
|
||||||
#endif
|
#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
|
#define FORMAT_BUF_SZ 1024
|
||||||
|
|
||||||
#if __GNUC__
|
#if __GNUC__
|
||||||
|
|
Loading…
Reference in New Issue