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