shithub: scc

ref: 718fad000a4821aeab5d6050e8a93298a1a67e77
dir: /src/libc/ctype/isascii.c/

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

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