shithub: scc

ref: 7f832c62c90bc9660709b4a7171c28a418abfd03
dir: /lib/c/isascii.c/

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

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