shithub: scc

ref: 88a258358e1ee162f40fb0174cb2137096ff8c48
dir: /src/libc/ctype/isascii.c/

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

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