1 2 3 4 5 6 7 8 9 10
#include <arpa/inet.h> // for inet_pton int inet_pton(int af, const char *restrict src, void *restrict dst) { (void)af; (void)src; (void)dst; // TODO return 0; }