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