shithub: scc

ref: 5c514c971adaf928ffde1832f949db834f990dc6
dir: /lib/c/isblank.c/

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