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