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