| 146 | return isprint((unsigned char)c); |
| 147 | } |
| 148 | static inline bool cispunct(char c) |
| 149 | { |
| 150 | return ispunct((unsigned char)c); |
| 151 | } |
| 152 | static inline bool cisspace(char c) |
| 153 | { |
| 154 | return isspace((unsigned char)c); |
no outgoing calls
no test coverage detected