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