MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / dStrlwr

Function dStrlwr

Engine/source/core/strings/stringFunctions.cpp:367–383  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367char* dStrlwr(char *str)
368{
369#if defined(TORQUE_OS_WIN)
370 return _strlwr(str);
371#else
372 if (str == NULL)
373 return(NULL);
374
375 char* saveStr = str;
376 while (*str)
377 {
378 *str = tolower(*str);
379 str++;
380 }
381 return saveStr;
382#endif
383}
384
385//------------------------------------------------------------------------------
386

Callers 8

StrFindFunction · 0.85
getOrCreateHashNoCaseMethod · 0.85
ToLowerMethod · 0.85
buildVirtualMapMethod · 0.85
addVirtualMapMethod · 0.85
findVirtualMapMethod · 0.85
stristrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected