home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / zc.lzh / ZC / ZCSRC.LZH / IOLib / strlib / strdup.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-11-09  |  157 b   |  11 lines

  1. char *strdup(string)
  2.     register char *string;
  3.     {
  4.     register char *p;
  5.     char *malloc();
  6.  
  7.     if(p = malloc(strlen(string) + 1))
  8.         strcpy(p, string);
  9.     return(p);
  10.     }
  11.