home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / text / hyper / ADtoHT2_0.lha / MyLib.lha / string / memcpy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-05  |  256 b   |  15 lines

  1. #include <string.h>
  2.  
  3. #include <proto/exec.h>
  4.  
  5. /************************************************************************/
  6.  
  7. #undef memcpy
  8.  
  9. void *memcpy(void *Dest, const void *Source, size_t Size)
  10.  
  11. {
  12.   CopyMem((APTR)Source,(APTR)Dest,Size);
  13.   return Dest;
  14. }
  15.