home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 May / pcp151c.iso / misc / src / install / dns.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-06  |  158 b   |  10 lines

  1. #ifndef H_DNS
  2. #define H_DNS 
  3.  
  4. #include <netinet/in.h>
  5.  
  6. int mygethostbyname(char * name, struct in_addr * addr);
  7. char * mygethostbyaddr(char * ipnum);
  8.  
  9. #endif
  10.