MCPcopy Create free account
hub / github.com/Aloshi/EmulationStation / toLower

Function toLower

src/InputConfig.cpp:40–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39
40std::string toLower(std::string str)
41{
42 for(unsigned int i = 0; i < str.length(); i++)
43 {
44 str[i] = tolower(str[i]);
45 }
46
47 return str;
48}
49//end util functions
50
51InputConfig::InputConfig(int deviceId) : mDeviceId(deviceId)

Callers 3

mapInputMethod · 0.85
getInputByNameMethod · 0.85
loadFromXMLMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected