Function flipperzero_sys::bit_buffer_copy

source ·
pub unsafe extern "C" fn bit_buffer_copy(
    buf: *mut BitBuffer,
    other: *const BitBuffer,
)
Expand description

Copy another BitBuffer instance’s contents to this one, replacing all of the original data. The destination capacity must be no less than the source data size.

§Arguments

  • [in,out] - buf pointer to a BitBuffer instance to copy into
  • [in] - other pointer to a BitBuffer instance to copy from

Note: