MCPcopy Create free account
hub / github.com/EmbeddedRPC/erpc / IsRepeat

Function IsRepeat

test/common/gtest/gtest.cpp:9255–9255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9253 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
9254}
9255bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
9256bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
9257bool IsAsciiWordChar(char ch) {
9258 return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') ||

Callers 2

ValidateRegexFunction · 0.85
MatchRegexAtHeadFunction · 0.85

Calls 1

IsInSetFunction · 0.85

Tested by

no test coverage detected