shithub: scc

ref: 1ebd02c28ba4d5969e349942e2ec7334ca13d195
dir: /lib/c/isblank.c/

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