shithub: scc

ref: 9649f784e703493c96c77c0aef192554d77ff48b
dir: /lib/c/isblank.c/

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