shithub: scc

ref: ae625397ab37916be884edee90fc7d37a50e8d0d
dir: /lib/c/isprint.c/

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

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