MCPcopy Create free account
hub / github.com/ElementsProject/elements / ToUpper

Function ToUpper

src/util/strencodings.cpp:497–502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

495}
496
497std::string ToUpper(const std::string& str)
498{
499 std::string r;
500 for (auto ch : str) r += ToUpper(ch);
501 return r;
502}
503
504std::string Capitalize(std::string str)
505{

Callers 1

CapitalizeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected