MCPcopy Create free account
hub / github.com/SFML/SFML / toLower

Function toLower

src/SFML/System/Utils.cpp:37–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35namespace sf
36{
37std::string toLower(std::string str)
38{
39 for (char& c : str)
40 c = static_cast<char>(std::tolower(static_cast<unsigned char>(c)));
41 return str;
42}
43
44std::string formatDebugPathInfo(const std::filesystem::path& path)
45{

Callers 11

saveToMemoryMethod · 0.85
setFieldMethod · 0.85
hasFieldMethod · 0.85
Http.cppFile · 0.85
parseMethod · 0.85
parseFieldsMethod · 0.85
setHostMethod · 0.85
queryDnsFunction · 0.85
checkMethod · 0.85
checkMethod · 0.85
checkMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected