shithub: scc

ref: aec67e43c52fcc1857d00d498d82189bbf0f680a
dir: /lib/c/isascii.c/

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

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