shithub: scc

ref: 12420501c287775747660ff682e8de34cb6de853
dir: /lib/c/isblank.c/

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