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