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