Declaration:
void movmem(void dest[], void src[], unsigned int length, int dest_index=0, int src_index=0);
Description
The movmem function copies length 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 movmem function ensures that byte are copied correctly.
Returned value
None.
|