Function flipperzero_sys::simple_array_copy

source ·
pub unsafe extern "C" fn simple_array_copy(
    instance: *mut SimpleArray,
    other: *const SimpleArray,
)
Expand description

Copy (duplicate) another SimpleArray instance to this one. If copy() is specified in the config, then it is called for each element, otherwise the data is simply memcpy()’d.

§Arguments

  • [in] - instance Pointer to the SimpleArray instance to copy to
  • [in] - other Pointer to the SimpleArray instance to copy from