shithub: scc

ref: 59ec69003f284ff73480ce2724e50fe7ee178f98
dir: /lib/c/isblank.c/

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