shithub: scc

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

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

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