shithub: scc

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

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

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