Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
118
void strlwr(char* str)
119
{
120
for(; *str; str++)
121
if(*str >=
'A'
&& *str <=
'Z'
)
122
*str += 32;
123
}
124
125
void strupr(char* str)
126
{
Callers
1
findBestCommand
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected