shithub: scc

ref: 0298b8c6607844bc77deb5d21da651a4954af076
dir: /lib/c/isblank.c/

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