remove all remaining redundant __restrict/__inline/_Noreturn defs
[musl] / include / arpa / inet.h
1 #ifndef _ARPA_INET_H
2 #define _ARPA_INET_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <features.h>
9 #include <netinet/in.h>
10 #include <inttypes.h>
11
12 #define __NEED_socklen_t
13 #define __NEED_in_addr_t
14 #define __NEED_in_port_t
15 #define __NEED_uint16_t
16 #define __NEED_uint32_t
17 #define __NEED_struct_in_addr
18
19 #include <bits/alltypes.h>
20
21 uint32_t htonl(uint32_t);
22 uint16_t htons(uint16_t);
23 uint32_t ntohl(uint32_t);
24 uint16_t ntohs(uint16_t);
25
26 in_addr_t inet_addr (const char *);
27 char *inet_ntoa (struct in_addr);
28 int inet_pton (int, const char *__restrict, void *__restrict);
29 const char *inet_ntop (int, const void *__restrict, char *__restrict, socklen_t);
30
31 int inet_aton (const char *, struct in_addr *); /* nonstandard but widely used */
32
33 #undef INET_ADDRSTRLEN
34 #undef INET6_ADDRSTRLEN
35 #define INET_ADDRSTRLEN  16
36 #define INET6_ADDRSTRLEN 46
37
38 #ifdef __cplusplus
39 }
40 #endif
41
42 #endif