home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / network / netlib_1 / NetLibSrc / h / socketlib
Text File  |  1994-12-20  |  210b  |  13 lines

  1. #ifndef __socketlib_h
  2. #define __socketlib_h
  3.  
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7.  
  8. extern char *__socketlib_readline(FILE *file);
  9.  
  10. #define strdup(s) strcpy(malloc(strlen(s)+1), s)
  11.  
  12. #endif
  13.