diff options
Diffstat (limited to 'system/include/net/arpa/inet.h')
-rw-r--r-- | system/include/net/arpa/inet.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/system/include/net/arpa/inet.h b/system/include/net/arpa/inet.h index 93223d32..06d44183 100644 --- a/system/include/net/arpa/inet.h +++ b/system/include/net/arpa/inet.h @@ -1,4 +1,10 @@ -/* */ + +#ifndef _NET_ARPA_INET_H +#define _NET_ARPA_INET_H + +#ifdef __cplusplus +extern "C" { +#endif #include <stdint.h> @@ -8,3 +14,14 @@ uint32_t ntohl(uint32_t netlong); uint16_t ntohs(uint16_t netshort); int inet_aton(const char *cp, struct in_addr *addr); +char *inet_ntoa(struct in_addr in); + +typedef long in_addr_t; +in_addr_t inet_addr(const char *cp); + +#ifdef __cplusplus +} +#endif + +#endif + |