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