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