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