shithub: scc

ref: b3eaabc77b314248434e707001fd2d0d3087471c
dir: /lib/c/src/isblank.c/

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