memmove

Example: memmoveBuffer Manipulation Functions

Moves a number of bytes from one buffer to another.

void *memmove( void *dest, const void *src, size_t n ); 

destDestination buffer where the data is copied.
srcThe name of the source buffer from which the data is copied.
nThe number of bytes to copy.

Return Values

Returns dest, the destination buffer to where the data is copied.