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