shithub: scc

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

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

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