| 76 | |
| 77 | #ifdef __cplusplus |
| 78 | static inline int isspace(int c) |
| 79 | { |
| 80 | return c == ' ' || c == '\t' || c == '\n' || c == '\r' || |
| 81 | c == '\f' || c == '\v'; |
| 82 | } |
| 83 | |
| 84 | static inline int isspace_l(int c, locale_t locale) |
| 85 | { |
no outgoing calls
no test coverage detected