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

Function dStrlwr

Engine/source/core/strings/stringFunctions.cpp:366–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

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