shithub: scc

ref: 7a5f84aadb1fceda9f03fcebe3449f3ac0004f15
dir: /lib/c/src/iscntrl.c/

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

int
iscntrl(int c)
{
	return __ctype[(unsigned char) c] & (_C);
}