home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 1
/
FFMCD01.bin
/
useful
/
dist
/
gnu
/
emacs
/
unix
/
src
/
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
|
1992-12-02
|
156 b
|
11 lines
#include "amiga.h"
#include <string.h>
#undef bcopy
void bcopy(char *b1, char *b2, int length)
{
/* Unoptimised version */
memmove(b2, b1, length);
}