shithub: scc

ref: 67edfb04d803788d5d55242ec0ca813048d78266
dir: /lib/c/isblank.c/

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