shithub: scc

ref: 3f578df67900a3ddfc775df18b6d599e82716814
dir: /lib/c/ispunct.c/

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

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