shithub: scc

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

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