inet_net_ntop
char *inet_net_ntop(int, const void *, int, char *, size_t);
__weak_reference(__inet_net_ntop, inet_net_ntop);
auto ret = inet_net_ntop(AF_INET, &in, bits,
auto ret = inet_net_ntop(AF_INET6, &in6, bits,
auto ret = inet_net_ntop(AF_INET6, &addr6, 128, strbuf.data(), 1);
ret = inet_net_ntop(AF_INET, &addr4, 32, strbuf.data(), 1);
ret = inet_net_ntop(AF_INET6, &addr6, 129, strbuf.data(), strbuf.size());
ret = inet_net_ntop(AF_INET6, &addr6, -1, strbuf.data(), strbuf.size());
ret = inet_net_ntop(AF_INET, &addr4, 33, strbuf.data(), strbuf.size());
ret = inet_net_ntop(AF_INET, &addr4, -1, strbuf.data(), strbuf.size());