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