shithub: scc

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

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

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