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

Function IsAsciiPunct

tests/gtest/gtest-all.cc:10481–10483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10479// current locale.
10480bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
10481bool IsAsciiPunct(char ch) {
10482 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
10483}
10484bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
10485bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
10486bool IsAsciiWordChar(char ch) {

Callers 2

IsValidEscapeFunction · 0.85
AtomMatchesCharFunction · 0.85

Calls 1

IsInSetFunction · 0.85

Tested by

no test coverage detected