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

Function IsAlpha

tests/gtest/gtest.h:2217–2219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2215// isspace(), etc.
2216
2217inline bool IsAlpha(char ch) {
2218 return isalpha(static_cast<unsigned char>(ch)) != 0;
2219}
2220inline bool IsAlNum(char ch) {
2221 return isalnum(static_cast<unsigned char>(ch)) != 0;
2222}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected