shithub: scc

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

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