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