shithub: scc

ref: 4e6fb511b31c7d113f56e968c952575cb0130df3
dir: /src/libc/ctype/isascii.c/

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

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