.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 "char *" bcopy .BI "(const char *" src "," .BI "char *" dest "," .BI "int " count ");" .SH ARGUMENTS .IP "src" 12 Where to copy from .IP "dest" 12 Where to copy to .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.