shithub: scc

ref: 9f098e0ead1a6be8a47dae73713a61f66da84013
dir: /libc/src/isblank.c/

View raw version
/* See LICENSE file for copyright and license details. */

int
isblank(int c)
{
	return (c == ' ') || (c == '\t');
}