shithub: scc

ref: 276fb4f109a09839c203cc3ce270639e0d605084
dir: /lib/c/isblank.c/

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