shithub: scc

ref: 8e517c601fa233750a08f2ce8f8656557486d76a
dir: /src/libc/ctype/ispunct.c/

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

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