1#include <ctype.h>
2#undef isspace
3
4int isspace(int c) {
5    return c == ' ' || (unsigned)c - '\t' < 5;
6}
7