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