shithub: scc

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

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

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