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