shithub: scc

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

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