home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / stringlb.lzh / STRINGLIB / BCOPY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-01  |  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.