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