Function memmove

Top 

Declaration:

void memmove(void dest[], void src[], int n, int dest_index=0, int src_index=0);

Description

The memmove function copies n bytes from the buffer specified by scr to the buffer specified by dest. When these buffers have common memory cells (that is, they overlap), the memmove function ensures that bytes are copied correctly.

Returned value

None.