shithub: scc

ref: 2699bac1e5869e2ee92f588d8c91b3a7d19fbaf0
dir: /lib/c/isascii.c/

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

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