shithub: scc

ref: 0b5b425ee75e1287e853ee243d76432323e28047
dir: /lib/c/isblank.c/

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