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