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