MCPcopy Create free account
hub / github.com/davisking/dlib / strtolower

Method strtolower

dlib/http_client/http_client.cpp:348–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

346// ----------------------------------------------------------------------------------------
347
348 std::string http_client::strtolower(const std::string& in) const
349 {
350 std::string retVal = in;
351
352 for (std::string::iterator ii = retVal.begin(); ii != retVal.end(); ++ii)
353 {
354 *ii = ::tolower(*ii);
355 }
356
357 return retVal;
358 }
359
360// ----------------------------------------------------------------------------------------
361

Callers

nothing calls this directly

Calls 3

tolowerFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected