shithub: scc

ref: 6cd7862223d13fd0897c3fafc213dccf874b7101
dir: /src/libc/ctype/isprint.c/

View raw version
#include <ctype.h>
#undef isprint

int
isprint(int c)
{
	return (__ctype+1)[c] & (_P|_U|_L|_D|_SP);
}