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