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