summaryrefslogtreecommitdiff
path: root/src/ctype/isprint.c
blob: 504e66ed127f7d1f0cc5a9ca7456e45bf6283a9f (plain) (blame)
1
2
3
4
int isprint(int c)
{
	return (unsigned)c-0x20 < 0x5f;
}