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