home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / i / indnt16.zip / indent-1.6 / memcpy.c < prev    next >
C/C++ Source or Header  |  1992-06-30  |  330b  |  17 lines

  1. /* Copy LEN bytes starting at SRCADDR to DESTADDR.  Result undefined
  2.    if the source overlaps with the destination.
  3.    Return DESTADDR. */
  4.  
  5. char *
  6. memcpy (destaddr, srcaddr, len)
  7.      char *destaddr;
  8.      char *srcaddr;
  9.      int len;
  10. {
  11.   char *dest = destaddr;
  12.  
  13.   while (len-- > 0)
  14.     *destaddr++ = *srcaddr++;
  15.   return dest;
  16. }
  17.