home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_05 / 2n05064a < prev    next >
Text File  |  1991-03-27  |  159b  |  14 lines

  1. char *memcpy(s1, s2, n)
  2.     char *s1, *s2;
  3.     int n;
  4.     {
  5.     char *s = s1;
  6.  
  7.     while (--n >= 0)
  8.         *s1++ = *s2++;
  9.     return s;
  10.     }
  11.  
  12.  
  13.  
  14.