.TH "bcopy" 9 "bcopy" "25 May 1998" "Kernel Hacker's Manual" LINUX .SH NAME bcopy \- Copy one area of memory to another .SH SYNOPSIS .B "void" bcopy .BI "(const void *" srcp "," .BI "void *" destp "," .BI "size_t " count ");" .SH ARGUMENTS .IP "srcp" 12 -- undescribed -- .IP "destp" 12 -- undescribed -- .IP "count" 12 The size of the area. .SH "DESCRIPTION" Note that this is the same as \fBmemcpy\fP, with the arguments reversed. \fBmemcpy\fP is the standard, \fBbcopy\fP is a legacy BSD function. You should not use this function to access IO space, use \fBmemcpy_toio\fP or \fBmemcpy_fromio\fP instead.