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