musl-tcc/src/ctype/isascii.c

8 lines
78 B
C

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