shithub: scc

ref: 1bc054f7b7f8cd2fa8eea85929bf6d06f8bf787f
dir: /lib/c/src/isblank.c/

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