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