| 77 | } |
| 78 | |
| 79 | inline bool IsAsciiDigit(unsigned char c) { |
| 80 | return ::NPrivate::ASCII_CLASS[c] & ::NPrivate::CC_DIGIT; |
| 81 | } |
| 82 | |
| 83 | inline bool IsAsciiAlpha(unsigned char c) { |
| 84 | return ::NPrivate::ASCII_CLASS[c] & ::NPrivate::CC_ALPHA; |
no test coverage detected