shithub: scc

ref: 57fd86ea77bab85e988d003883dc323e2190d6b7
dir: /lib/c/isascii.c/

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

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