shithub: scc

ref: 813c707f576ae9ab4209c5b155fc348571465313
dir: /lib/c/isblank.c/

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