shithub: scc

ref: 61f5fa44e9f8b7ce6ee4cd5bd71c10845287960d
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);
}