This commit is contained in:
Branimir Karadžić
2017-06-08 21:47:46 -07:00
parent 81079ce6db
commit 9717c0942f

View File

@@ -42,7 +42,7 @@ extern "C" size_t strlen(const char* _str)
return bx::strLen(_str);
}
extern "C" size_t strLen(const char* _str, size_t _max)
extern "C" size_t strnlen(const char* _str, size_t _max)
{
return bx::strLen(_str, _max);
}