shithub: scc

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

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

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