shithub: scc

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

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

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