shithub: scc

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

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

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