shithub: scc

ref: bd41c3ee99a819ae92887538049cdef0ad482763
dir: /lib/c/isascii.c/

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

int
isascii(int c)
{
	return c <= 0x7f;
}