mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-15 00:31:43 +00:00
9 lines
201 B
C++
9 lines
201 B
C++
|
|
#ifndef GETHOST
|
|
#define GETHOST
|
|
|
|
struct hostent *gethostbyaddr(const void *addr, int len, int type);
|
|
struct hostent *gethostbyname(const char *name);
|
|
int gethostname(char *name, int namelen);
|
|
|
|
#endif
|