string: Use builtins for ffs and ffsll
[glibc.git] / include / ifaddrs.h
blob19a3afb19f9e893c08e66d2ac6bc6703afed3302
1 #ifndef _IFADDRS_H
2 #include <inet/ifaddrs.h>
4 # ifndef _ISOMAC
6 #include <stdbool.h>
7 #include <stdint.h>
9 libc_hidden_proto (getifaddrs)
10 libc_hidden_proto (freeifaddrs)
12 extern int __getifaddrs (struct ifaddrs **__ifap);
13 libc_hidden_proto (__getifaddrs)
14 extern void __freeifaddrs (struct ifaddrs *__ifa);
15 libc_hidden_proto (__freeifaddrs)
17 struct in6addrinfo
19 enum {
20 in6ai_deprecated = 1,
21 in6ai_homeaddress = 2
22 } flags:8;
23 uint8_t prefixlen;
24 uint16_t :16;
25 uint32_t index;
26 uint32_t addr[4];
29 extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6,
30 struct in6addrinfo **in6ai, size_t *in6ailen)
31 attribute_hidden;
32 extern void __free_in6ai (struct in6addrinfo *in6ai) attribute_hidden;
33 extern void __check_native (uint32_t a1_index, int *a1_native,
34 uint32_t a2_index, int *a2_native)
35 attribute_hidden;
37 # endif /* !_ISOMAC */
38 #endif /* ifaddrs.h */