shithub: scc

ref: 448edca819fa4d00ce307dca80bc4398150ec8e6
dir: /lib/c/isblank.c/

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