musl-tcc/src/ctype/isascii.c
2022-03-20 16:48:53 +08:00

8 lines
78 B
C

#include <ctype.h>
#undef isascii
int isascii(int c)
{
return !(c&~0x7f);
}