shithub: scc

ref: 8603664509dc8ef2576905a692bfca40d737637a
dir: /lib/c/isascii.c/

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

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