shithub: scc

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

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

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