.\" 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 "MEMMOVE" "9" "09 October 2005" "" ""
.SH NAME
memmove \- Copy one area of memory to another
.SH SYNOPSIS
"SYNOPSIS"
.sp
\fB
.sp
void * memmove (void * \fIdest\fB, const void * \fIsrc\fB, size_t \fIcount\fB);
\fR
.SH "ARGUMENTS"
.TP
\fB\fIdest\fB\fR
Where to copy to
.TP
\fB\fIsrc\fB\fR
Where to copy from
.TP
\fB\fIcount\fB\fR
The size of the area.
.SH "DESCRIPTION"
.PP
Unlike \fBmemcpy\fR, \fBmemmove\fR copes with overlapping areas.