MCPcopy Create free account
hub / github.com/ariccio/altWinDirStat / tolower

Function tolower

Reference code/osImageTool/stringutils.cpp:169–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169string tolower(const string& str)
170{
171 string lstr;
172 lstr.reserve(str.size());
173 for (string::const_iterator i=str.begin() ; i!=str.end() ; ++i)
174 lstr += tolower(*i);
175 return lstr;
176}
177int stringicompare(const string& a, const string& b)
178{
179 return stricmp(a.c_str(), b.c_str());

Callers 2

wmainFunction · 0.85
NCaseChrCmpMethod · 0.85

Calls 3

beginMethod · 0.80
sizeMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected