shithub: scc

ref: 59ec69003f284ff73480ce2724e50fe7ee178f98
dir: /lib/c/isascii.c/

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

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