netinet/if_ether.h: add ETH_P_LLDP from linux v5.3
[musl] / src / ctype / isascii.c
1 #include <ctype.h>
2 #undef isascii
3
4 int isascii(int c)
5 {
6         return !(c&~0x7f);
7 }