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