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