rework langinfo code for ABI compat and for use by time code
[musl] / include / netinet / ether.h
1 #ifndef _NETINET_ETHER_H
2 #define _NETINET_ETHER_H
3
4 #include <netinet/if_ether.h>
5
6 char *ether_ntoa (const struct ether_addr *);
7 struct ether_addr *ether_aton (const char *);
8 char *ether_ntoa_r (const struct ether_addr *, char *);
9 struct ether_addr *ether_aton_r (const char *, struct ether_addr *);
10 int ether_line(const char *, struct ether_addr *, char *);
11 int ether_ntohost(char *, const struct ether_addr *);
12 int ether_hostton(const char *, struct ether_addr *);
13
14 #endif