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