shithub: scc

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

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

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