This commit is contained in:
Branimir Karadžić
2017-11-27 23:10:20 -08:00
parent 5585eb69d4
commit 148bdc60fa
5 changed files with 32 additions and 30 deletions

View File

@@ -153,12 +153,6 @@ namespace bx
toUpperUnsafe(_inOutStr, len);
}
bool toBool(const char* _str)
{
char ch = toLower(_str[0]);
return ch == 't' || ch == '1';
}
typedef char (*CharFn)(char _ch);
inline char toNoop(char _ch)