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