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

Function IsAlNum

tests/gtest/gtest.h:2220–2222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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}
2223inline bool IsDigit(char ch) {
2224 return isdigit(static_cast<unsigned char>(ch)) != 0;
2225}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected