shithub: scc

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

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