shithub: scc

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

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