shithub: scc

ref: 4b53e7160f467835c7797453b408122069fd606b
dir: /lib/c/isblank.c/

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