dquakeplus/source/psp/gethost.hpp

10 lines
201 B
C++
Raw Normal View History

2022-02-08 21:49:56 +00:00
#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