lv_memcpy() function
DEFINES TYPEDEFS GLOBAL PROTOTYPES Copies a block of memory from a source address to a destination address.
Syntax
void * lv_memcpy(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.
Notes
The function does not check for any overlapping of the source and destination memory blocks.