copy byte string

You're viewing an older version of this page (#3264). View the current version.

View versions (3)

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 &#92;c len bytes from string &#92;c src to string &#92;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 &#92;c dst.

SEE ALSO

reference:bcopy (3) , reference:memccpy (3) , memcpy (3) , strcpy (3)

STANDARDS

The memmove function conforms to