musl-tcc/src/ctype/isascii.c

8 lines
78 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <ctype.h>
#undef isascii
int isascii(int c)
{
return !(c&~0x7f);
}