home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume12
/
cnews
/
part01
/
libc
/
strings
/
bcopy.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-10-19
|
211 b
|
14 lines
/*
- bcopy - Berklix equivalent of memcpy
*/
bcopy(src, dst, length)
CONST char *src;
char *dst;
int length;
{
extern VOIDSTAR memcpy();
(void) memcpy((VOIDSTAR)dst, (CONST VOIDSTAR)src, (SIZET)length);
}