home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Programming / tek / mem / memcopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-05-12  |  266 b   |  19 lines

  1.  
  2. #include "tek/kn/exec.h"
  3.  
  4. /* 
  5. **    TEKlib
  6. **    (C) 2001 TEK neoscientists
  7. **    all rights reserved.
  8. **
  9. **    TVOID TMemCopy(TAPTR from, TAPTR to, TUINT numbytes)
  10. **
  11. **    copy mem
  12. **
  13. */
  14.  
  15. TVOID TMemCopy(TAPTR from, TAPTR to, TUINT numbytes)
  16. {
  17.     kn_memcopy(from, to, numbytes);
  18. }
  19.