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

Function dStrupr

Engine/source/core/strings/stringFunctions.cpp:349–365  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

347}
348
349char* dStrupr(char *str)
350{
351#if defined(TORQUE_OS_WIN)
352 return _strupr(str);
353#else
354 if (str == NULL)
355 return(NULL);
356
357 char* saveStr = str;
358 while (*str)
359 {
360 *str = toupper(*str);
361 str++;
362 }
363 return saveStr;
364#endif
365}
366
367char* dStrlwr(char *str)
368{

Callers 4

setExpressionMethod · 0.85
findMatchMethod · 0.85
ToUpperMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected