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