shithub: scc

ref: f804aedceaa0393ee3e8bf79dd58f6fe83a046c3
dir: /lib/c/isblank.c/

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