Renaming string functions.

This commit is contained in:
Branimir Karadžić
2017-04-22 14:47:02 -07:00
parent 97ddfaa776
commit c9679731a5
16 changed files with 112 additions and 112 deletions

View File

@@ -525,12 +525,12 @@ int main(int _argc, const char* _argv[])
}
const char* vertex = argv[edge+1];
char* texcoord = const_cast<char*>(bx::strnchr(vertex, '/') );
char* texcoord = const_cast<char*>(bx::strFind(vertex, '/') );
if (NULL != texcoord)
{
*texcoord++ = '\0';
char* normal = const_cast<char*>(bx::strnchr(texcoord, '/') );
char* normal = const_cast<char*>(bx::strFind(texcoord, '/') );
if (NULL != normal)
{
*normal++ = '\0';