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