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