lv_memset() function
Fills a block of memory with a specified value.
Syntax
void lv_memset(void * dst,
uint8_t v,
size_t len);
Arguments
dst
Pointer to the destination array to fill with the specified value.
v
Value to be set. The value is passed as an int, but the function fills the block of memory using the unsigned char conversion of this value.
len
Number of bytes to be set to the value.