release 1.2.2
[musl.git] / src / ctype / isascii.c
blob54ad3bf028a6728102e2e311284fece49f2eac71
1 #include <ctype.h>
2 #undef isascii
4 int isascii(int c)
6 return !(c&~0x7f);