shithub: scc

ref: 5477869521457e8c088f7480104316b68914ce88
dir: /lib/c/isblank.c/

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