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