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