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

Function toLower

common/StringUtil.cpp:207–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205 }
206
207 std::string toLower(const std::string_view input)
208 {
209 std::string newStr;
210 std::transform(input.begin(), input.end(), std::back_inserter(newStr),
211 [](unsigned char c) { return std::tolower(c); });
212 return newStr;
213 }
214
215 std::string toUpper(const std::string_view input)
216 {

Callers 2

initDatabaseMethod · 0.85
findGameMethod · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected