shithub: scc

ref: b81141894f3c7f562bde8c125087cb51f00ae53a
dir: /lib/c/isblank.c/

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