MCPcopy Create free account
hub / github.com/apache/trafficserver / IsUpper

Function IsUpper

lib/yamlcpp/src/convert.cpp:8–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6// we're not gonna mess with the mess that is all the isupper/etc. functions
7bool IsLower(char ch) { return 'a' <= ch && ch <= 'z'; }
8bool IsUpper(char ch) { return 'A' <= ch && ch <= 'Z'; }
9char ToLower(char ch) { return IsUpper(ch) ? ch + 'a' - 'A' : ch; }
10
11std::string tolower(const std::string& str) {

Callers 2

ToLowerFunction · 0.85
IsFlexibleCaseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected