shithub: scc

ref: 46d3eab0b1e077005fcc4a7bc5257be9a411d1a1
dir: /lib/c/src/isblank.c/

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