shithub: scc

ref: 2d60e8ab6926bc6850e5299182747c314e2589ce
dir: /lib/c/isblank.c/

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