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