shithub: scc

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

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