add ether_aton[_r] and ether_ntoa[_r] functions
[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
8 struct ether_addr *ether_aton (const char *);
9
10 char *ether_ntoa_r (const struct ether_addr *, char *);
11
12 struct ether_addr *ether_aton_r (const char *, struct ether_addr *);
13
14 #endif