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