shithub: scc

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

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