shithub: scc

ref: 831becab55913062b3a314c34cec38fa511bb21b
dir: /lib/c/isascii.c/

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

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