shithub: scc

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

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

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