#include // for inet_pton int inet_pton(int af, const char *restrict src, void *restrict dst) { (void)af; (void)src; (void)dst; // TODO return 0; }