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