mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 02:27:43 +00:00
Update boo
This commit is contained in:
2
hecl/extern/libBoo
vendored
2
hecl/extern/libBoo
vendored
Submodule hecl/extern/libBoo updated: c499a29e90...147115b6ac
@@ -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__
|
||||||
|
|||||||
Reference in New Issue
Block a user