ref: 884acf9274a44d602d54e3e339c7730a9274c0d7 dir: /src/libc/ctype/isblank.c/
#include <ctype.h> int isblank(int c) { return (c == ' ') || (c == '\t'); }