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