shithub: scc

ref: a98aac17201df8612313d56b400094919b8deec8
dir: /lib/c/src/isblank.c/

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