1995-02-18 09:27:10 +08:00
|
|
|
#include <inet/arpa/inet.h>
|
2000-04-04 14:38:32 +08:00
|
|
|
|
2012-02-27 10:32:56 +08:00
|
|
|
#ifndef _ISOMAC
|
2019-01-22 04:26:03 +08: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 20:09:37 +08:00
|
|
|
|
|
|
|
libc_hidden_proto (inet_ntop)
|
|
|
|
libc_hidden_proto (inet_pton)
|
2014-12-18 02:09:11 +08: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 20:09:37 +08:00
|
|
|
libc_hidden_proto (inet_netof)
|
2021-07-08 00:33:52 +08:00
|
|
|
extern __typeof (inet_network) __inet_network;
|
|
|
|
libc_hidden_proto (__inet_network)
|
2012-02-27 10:32:56 +08:00
|
|
|
#endif
|