shithub: scc

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

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

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