shithub: scc

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

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

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