shithub: scc

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

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