shithub: scc

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

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

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