lv_memmove() function
Move a block of memory from source to destination
Syntax
void * lv_memmove(void * dst,
const void * src,
size_t len);
Arguments
dst
Pointer to the destination array where the content is to be copied.
src
Pointer to the source of data to be copied.
len
Number of bytes to copy
Return value
Pointer to the destination array.