shithub: scc

ref: 44d7ee0f42a108bf8304cade628bb37fbbe806ef
dir: /lib/c/src/isascii.c/

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

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