1995-02-18 01:27:10 +00:00
|
|
|
#include <inet/arpa/inet.h>
|
2000-04-04 06:38:32 +00:00
|
|
|
|
2012-02-27 02:32:56 +00:00
|
|
|
#ifndef _ISOMAC
|
2019-01-21 20:26:03 +00:00
|
|
|
/* Variant of inet_aton which rejects trailing garbage. */
|
|
|
|
extern int __inet_aton_exact (const char *__cp, struct in_addr *__inp);
|
|
|
|
libc_hidden_proto (__inet_aton_exact)
|
2002-08-03 12:09:37 +00:00
|
|
|
|
|
|
|
libc_hidden_proto (inet_ntop)
|
|
|
|
libc_hidden_proto (inet_pton)
|
2014-12-17 18:09:11 +00:00
|
|
|
extern __typeof (inet_pton) __inet_pton;
|
|
|
|
libc_hidden_proto (__inet_pton)
|
|
|
|
extern __typeof (inet_makeaddr) __inet_makeaddr;
|
|
|
|
libc_hidden_proto (__inet_makeaddr)
|
2002-08-03 12:09:37 +00:00
|
|
|
libc_hidden_proto (inet_netof)
|
2021-07-07 16:33:52 +00:00
|
|
|
extern __typeof (inet_network) __inet_network;
|
|
|
|
libc_hidden_proto (__inet_network)
|
2012-02-27 02:32:56 +00:00
|
|
|
#endif
|