ref: 6fe4bfa800433e39ea7f70645103e5dccdd9411d dir: /lib/c/isblank.c/
#include <ctype.h> int isblank(int c) { return (c == ' ') || (c == '\t'); }