home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 14view / strdup.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  244 b   |  18 lines

  1. /*
  2.  *    strdup -- duplicate a string
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include <malloc.h>
  7. #include <string.h>
  8.  
  9. char *
  10. strdup(str)
  11. char *str;
  12. {
  13.     char *buf;
  14.  
  15.     buf = malloc(strlen(str) + 1);
  16.     return (buf == NULL ? buf : strcpy(buf, str));
  17. }
  18.