home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / misc / src / install / dns.h < prev    next >
C/C++ Source or Header  |  1997-09-17  |  158b  |  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.