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