ref: b0b817261fb05f20bbeb9ab91586a2569dd7bd85 dir: /libc/src/isblank.c/
/* See LICENSE file for copyright and license details. */ int isblank(int c) { return (c == ' ') || (c == '\t'); }