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