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