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