MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / toUpper

Function toUpper

common/StringUtil.cpp:215–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213 }
214
215 std::string toUpper(const std::string_view input)
216 {
217 std::string newStr;
218 std::transform(input.begin(), input.end(), std::back_inserter(newStr),
219 [](unsigned char c) { return std::toupper(c); });
220 return newStr;
221 }
222
223 bool compareNoCase(const std::string_view str1, const std::string_view str2)
224 {

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected