Function bit_buffer_get_byte
Source pub unsafe extern "C" fn bit_buffer_get_byte(
buf: *const BitBuffer,
index: usize,
) -> u8
Expand description
Get a byte value at a specified index in a BitBuffer instance.
The index must be valid (i.e. less than the instance’s data size
in bytes).
§Arguments
buf (direction in) - pointer to a BitBuffer instance to be queried
index (direction in) - index of the byte in question
§Returns
byte value