shithub: scc

ref: 0227f08f277216ef979a859e1170aff185205abb
dir: /src/libc/ctype/isascii.c/

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

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