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