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

  1.  
  2. /*
  3.  *  STRCPY.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  *
  7.  */
  8.  
  9. #include <string.h>
  10.  
  11. char *
  12. strcpy(d, s)
  13. char *d;
  14. const char *s;
  15. {
  16.     char c;
  17.     char *base = d;
  18.  
  19.     c;
  20.  
  21.     while(c = *s) {
  22.     *d = c;
  23.     ++s;
  24.     ++d;
  25.     }
  26.     *d = 0;
  27.     return(base);
  28. }
  29.  
  30.  
  31.