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