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