bcopy

Copies a memory block.

void * bcopy (void * source, void * dest, size_t length);

Required Header
<string.h>

Return Value

This function returns a pointer to the destination memory block.

Parameters

source

  The source memory block

dest

  The destination memory block

length

  The length of the memory blocks

Remarks

The bcopy function copies length bytes from source to dest.

String

See Also    memcpy