Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/computationalpathologygroup/ASAP
/ lower
Function
lower
core/stringconversion.cpp:47–50 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
45
}
46
47
void lower(std::string &s)
48
{
49
for (unsigned int i = 0; i < s.size(); i++) if ((s[i] > 64) && (s[i] < 91)) s[i] = s[i] + 32;
50
}
51
52
void upper(std::string &s)
53
{
Callers
nothing calls this directly
Calls
1
size
Method · 0.80
Tested by
no test coverage detected