| 81 | } |
| 82 | |
| 83 | inline bool IsAsciiAlpha(unsigned char c) { |
| 84 | return ::NPrivate::ASCII_CLASS[c] & ::NPrivate::CC_ALPHA; |
| 85 | } |
| 86 | |
| 87 | inline bool IsAsciiAlnum(unsigned char c) { |
| 88 | return ::NPrivate::ASCII_CLASS[c] & ::NPrivate::CC_ALNUM; |
no test coverage detected