Copies byte strings.
#include <strings.h>
void bcopy (const void *source, void
*destination, size_t length);
Unlike the string functions, there is no checking for null bytes. If the length argument is 0 (zero), no bytes are copied.
Note that bcopy is equivalent to memcpy, which is defined by the ANSI C Standard. Therefore, using memcpy is recommended for portable programs.