home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume7
/
rvi
/
part1
/
copy.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
|
1986-11-30
|
231 b
|
21 lines
/* copy - copy data structures
84/12/18. A. E. Klietz.
*/
#include "rv.h"
#ifdef copy
#undef copy
#endif
#ifndef USG
void
copy(to, from, len)
char *to, *from;
int len;
{
for (; len > 0; --len)
*(to++) = *(from++);
}
#endif