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