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