shithub: scc

ref: bf06512e77f04190d1f1ed54faced3ee8f1097d5
dir: /src/libc/ctype/isascii.c/

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

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