shithub: scc

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

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