Function flipperzero_sys::bit_buffer_append_bytes
source · pub unsafe extern "C" fn bit_buffer_append_bytes(
buf: *mut BitBuffer,
data: *const u8,
size_bytes: usize,
)Expand description
Append a byte array to a BitBuffer instance. The destination capacity must be no less its original data size plus source data size.
§Arguments
[in,out]- buf pointer to a BitBuffer instance to be appended to[in]- data pointer to the byte array to be appended[in]- size_bytes size of the data to be appended, in bytes