shithub: scc

ref: 2c616f66467f5e2708b7f8f46d96469181c4c406
dir: /src/libc/ctype/ispunct.c/

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

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