COHERENT manpages

This page displays the COHERENT manpage for bcopy() [Berkeley function to copy memory].

List of available manpages
Index


bcopy() -- String Function (libc)

Berkeley function to copy memory
void bcopy(source, destination, amount)
char *source, *destination;
int size;

Function bcopy()  copies size bytes of data from  address source to address
destination. destination must point to enough allocated memory to hold size
bytes of data, or problems will result.

See Also

libc,
memcpy(),

Notes

Please note  the arguments  of bcopy()  are the opposite  of those  used by
memcpy(). This function  is included solely for compatibility with existing
code; users are encouraged to use the standard function memcpy() instead.