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