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