dquakeplus/source/psp/gethost.hpp
2022-02-08 16:49:56 -05:00

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