| 69 | } |
| 70 | |
| 71 | inline bool IsAsciiUpper(unsigned char c) { |
| 72 | return ::NPrivate::ASCII_CLASS[c] & ::NPrivate::CC_UPPER; |
| 73 | } |
| 74 | |
| 75 | inline bool IsAsciiLower(unsigned char c) { |
| 76 | return ::NPrivate::ASCII_CLASS[c] & ::NPrivate::CC_LOWER; |
no test coverage detected