1 2 3 4 5 6 7 8 9 10 11
#pragma once struct hostent { char *h_name; char **h_aliases; int h_addrtype; int h_length; char **h_addr_list; }; struct hostent *gethostbyname(const char *name);