Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/crownengine/crown
/ toLowerUnsafe
Function
toLowerUnsafe
3rdparty/bx/src/string.cpp:133–139 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
131
}
132
133
void toLowerUnsafe(char* _inOutStr, int32_t _len)
134
{
135
for (int32_t ii = 0; ii < _len; ++ii)
136
{
137
_inOutStr[ii] = toLower(_inOutStr[ii]);
138
}
139
}
140
141
void toLower(char* _inOutStr, int32_t _max)
142
{
Callers
1
toLower
Function · 0.85
Calls
1
toLower
Function · 0.85
Tested by
no test coverage detected