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

@ -1 +1 @@
Subproject commit c499a29e90b7aafabd24cfb09e844b8404af077d
Subproject commit 147115b6ac56f04dc49b030aca3f1356a8efa484

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__