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