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