ref: 989b26202e9264b37237371f85a19630ec4f1b0a dir: /src/libc/ctype/isspace.c/
#include <ctype.h> #undef isspace int isspace(int c) { return (__ctype+1)[c] & _S; }