shithub: scc

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

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

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