shithub: scc

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

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