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

Method strtoupper

dlib/http_client/http_client.cpp:362–372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

360// ----------------------------------------------------------------------------------------
361
362 std::string http_client::strtoupper(const std::string& in) const
363 {
364 std::string retVal = in;
365
366 for (std::string::iterator ii = retVal.begin(); ii != retVal.end(); ++ii)
367 {
368 *ii = ::toupper(*ii);
369 }
370
371 return retVal;
372 }
373
374// ----------------------------------------------------------------------------------------
375

Callers

nothing calls this directly

Calls 3

toupperFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected