home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d029 / stringlib.lha / StringLib / bcopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-07-21  |  232 b   |  16 lines

  1. /*
  2.  - bcopy - Berklix equivalent of memcpy
  3.  */
  4.  
  5. #include "config.h"
  6.  
  7. bcopy(src, dst, length)
  8. CONST char *src;
  9. char *dst;
  10. int length;
  11. {
  12.     extern VOIDSTAR memcpy();
  13.  
  14.     (void) memcpy((VOIDSTAR)dst, (CONST VOIDSTAR)src, (SIZET)length);
  15. }
  16.