1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef _NETINET_ETHER_H
- #define _NETINET_ETHER_H 1
- #include <features.h>
- #include <netinet/if_ether.h>
- __BEGIN_DECLS
- extern char *ether_ntoa (const struct ether_addr *__addr) __THROW;
- extern char *ether_ntoa_r (const struct ether_addr *__addr, char *__buf)
- __THROW;
- extern struct ether_addr *ether_aton (const char *__asc) __THROW;
- extern struct ether_addr *ether_aton_r (const char *__asc,
- struct ether_addr *__addr) __THROW;
- extern int ether_ntohost (char *__hostname, const struct ether_addr *__addr)
- __THROW;
- extern int ether_hostton (const char *__hostname, struct ether_addr *__addr)
- __THROW;
- extern int ether_line (const char *__line, struct ether_addr *__addr,
- char *__hostname) __THROW;
- __END_DECLS
- #endif
|