Function flipperzero_sys::bit_buffer_append_right

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

Append a BitBuffer’s instance contents to this one, starting from start_index. The destination capacity must be no less than the source data size counting from start_index.

§Arguments

  • [in,out] - buf pointer to a BitBuffer instance to be appended to
  • [in] - other pointer to a BitBuffer instance to be appended
  • [in] - start_index index to begin copying source data from