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