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