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