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