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