shithub: scc

ref: 3a11ea050c4cec90cb4827042e4d13a4de6ef20c
dir: /lib/c/isascii.c/

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

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