shithub: scc

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

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