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