| 150 | return ispunct((unsigned char)c); |
| 151 | } |
| 152 | static inline bool cisspace(char c) |
| 153 | { |
| 154 | return isspace((unsigned char)c); |
| 155 | } |
| 156 | static inline bool cisupper(char c) |
| 157 | { |
| 158 | return isupper((unsigned char)c); |
no outgoing calls
no test coverage detected