home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / string / strdup.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  198 b   |  21 lines

  1.  
  2. /*
  3.  *  STRDUP.C
  4.  */
  5.  
  6. #include <string.h>
  7. #include <stdlib.h>
  8.  
  9. char *
  10. strdup(s)
  11. const char *s;
  12. {
  13.     int len = strlen(s);
  14.     char *d;
  15.  
  16.     if (d = malloc(len + 1))
  17.     strcpy(d, s);
  18.     return(d);
  19. }
  20.  
  21.