MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / asciiLower

Function asciiLower

Libraries/HttpClient/HttpClient.cpp:35–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33namespace
34{
35static char asciiLower(char c)
36{
37 if (c >= 'A' and c <= 'Z')
38 {
39 return static_cast<char>(c - 'A' + 'a');
40 }
41 return c;
42}
43
44static bool asciiEqualsIgnoreCase(SC::StringSpan left, SC::StringSpan right)
45{

Callers 2

asciiEqualsIgnoreCaseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected