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