shithub: scc

ref: 44d7ee0f42a108bf8304cade628bb37fbbe806ef
dir: /lib/c/src/ispunct.c/

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

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