Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davidgiven/fluxengine
/ toUpper
Function
toUpper
lib/core/utils.cc:85–91 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
83
}
84
85
std::string toUpper(const std::string& value)
86
{
87
std::string s = value;
88
for (char& c : s)
89
c = toupper(c);
90
return s;
91
}
92
93
std::string leftTrimWhitespace(std::string value)
94
{
Callers
7
list
Method · 0.85
getDirent
Method · 0.85
getFile
Method · 0.85
putFile
Method · 0.85
deleteFile
Method · 0.85
moveFile
Method · 0.85
toDirent
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected