shithub: scc

ref: 97bfd21a430fbac3267e12e5d67a92a7f5ced8a9
dir: /lib/c/src/isblank.c/

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