shithub: scc

ref: 72c078099ff413a22007b90784238bb294dd7dbe
dir: /src/libc/ctype/isascii.c/

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

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