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

Function IsXDigit

tests/gtest/gtest.h:2235–2237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2233 return isupper(static_cast<unsigned char>(ch)) != 0;
2234}
2235inline bool IsXDigit(char ch) {
2236 return isxdigit(static_cast<unsigned char>(ch)) != 0;
2237}
2238inline bool IsXDigit(wchar_t ch) {
2239 const unsigned char low_byte = static_cast<unsigned char>(ch);
2240 return ch == low_byte && isxdigit(low_byte) != 0;

Callers 1

PrintCharsAsStringToFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected