ref: 529d80a36c7f5af3234619c8ba51f1c6a440fd9d dir: /libc/src/isspace.c/
/* See LICENSE file for copyright and license details. */ #define __USE_MACROS #include <ctype.h> #undef isspace int isspace(int c) { return _ctype[(unsigned char) c] & _S; }