shithub: scc

ref: 6eaa4bfaae6f1836f8250830673a48a467e5d757
dir: /lib/c/isascii.c/

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

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