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