shithub: scc

ref: 9c7973946f1d199343adaf0f516799bb6fd9ae0d
dir: /lib/c/isblank.c/

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