shithub: scc

ref: 044ed044112af8996f280664833682a4f437016f
dir: /src/libc/ctype/isascii.c/

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

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