shithub: scc

ref: 5310badb8f39560835f0db678d6784217c92766f
dir: /lib/c/isascii.c/

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

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