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