shithub: scc

ref: 27b4662757e3d9a500b69a96057cef8fdeacca99
dir: /lib/c/isascii.c/

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

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