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