memmove
copy byte string
You're viewing an older version of this page (#3264). View the current version.
NAME
<span class="Nm" id="memmove">memmove</span>
INTERFACE
#include <string.h> void memmove ( void *dst, const void *src, size_t len )
DESCRIPTION
The memmove function copies \c len bytes from string \c src to string \c dst. The two strings may overlap; the copy is always done in a non-destructive manner.
RETURN VALUES
The memmove function returns the original value of \c dst.
SEE ALSO
reference:bcopy (3) , reference:memccpy (3) , memcpy (3) , strcpy (3)
STANDARDS
The memmove function conforms to