MCPcopy 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
85std::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
93std::string leftTrimWhitespace(std::string value)
94{

Callers 7

listMethod · 0.85
getDirentMethod · 0.85
getFileMethod · 0.85
putFileMethod · 0.85
deleteFileMethod · 0.85
moveFileMethod · 0.85
toDirentMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected