MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / IsLower

Function IsLower

tests/gtest/gtest.h:2226–2228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2224 return isdigit(static_cast<unsigned char>(ch)) != 0;
2225}
2226inline bool IsLower(char ch) {
2227 return islower(static_cast<unsigned char>(ch)) != 0;
2228}
2229inline bool IsSpace(char ch) {
2230 return isspace(static_cast<unsigned char>(ch)) != 0;
2231}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected