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