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