MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / IsAsciiWhiteSpace

Function IsAsciiWhiteSpace

rtpose_wrapper/src/gtest/gtest-all.cpp:7991–7991  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7989}
7990bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
7991bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
7992bool IsAsciiWordChar(char ch) {
7993 return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') ||
7994 ('0' <= ch && ch <= '9') || ch == '_';

Callers 1

AtomMatchesCharFunction · 0.85

Calls 1

IsInSetFunction · 0.85

Tested by

no test coverage detected