shithub: scc

ref: 36747647964a2893277d27848ee8a1d577455cf8
dir: /src/libc/ctype/ispunct.c/

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

int
ispunct(int c)
{
	return (__ctype+1)[c] & (_P);
}