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