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