shithub: scc

ref: 2a24067b42a1f7673dab2bb6ed476a728e69af13
dir: /lib/c/isascii.c/

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

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