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