shithub: scc

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

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

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