shithub: scc

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

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

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