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