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