shithub: scc

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

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