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