.\" This manpage has been automatically generated by docbook2man .\" from a DocBook document. This tool can be found at: .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . .TH "BCOPY" "" "06 October 2005" "" "" .SH NAME bcopy \- Copy one area of memory to another .SH SYNOPSIS "SYNOPSIS" .sp \fB .sp char * bcopy (const char * \fIsrc\fB, char * \fIdest\fB, int \fIcount\fB); \fR .SH "ARGUMENTS" .TP \fB\fIsrc\fB\fR Where to copy from .TP \fB\fIdest\fB\fR Where to copy to .TP \fB\fIcount\fB\fR The size of the area. .SH "DESCRIPTION" .PP Note that this is the same as \fBmemcpy\fR, with the arguments reversed. \fBmemcpy\fR is the standard, \fBbcopy\fR is a legacy BSD function. .PP You should not use this function to access IO space, use \fBmemcpy_toio\fR or \fBmemcpy_fromio\fR instead.