shithub: scc

ref: 23de65bc68d09e469e5d587867eee4f497a1a6de
dir: /lib/c/isascii.c/

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

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