shithub: scc

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

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

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