MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/PhysX / strlwr

Function strlwr

physx/source/foundation/src/PsString.cpp:118–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116}
117
118void strlwr(char* str)
119{
120 for(; *str; str++)
121 if(*str >= 'A' && *str <= 'Z')
122 *str += 32;
123}
124
125void strupr(char* str)
126{

Callers 1

findBestCommandMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected