shithub: scc

ref: 9fbfbfa441fb3354422e52928d7f3af02d1ea2ad
dir: /lib/c/isascii.c/

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

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