shithub: scc

ref: 9478b030c2bbf311afc73b119177f14cd8f8e545
dir: /lib/c/src/isblank.c/

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