Function bit_buffer_starts_with_byte
Source pub unsafe extern "C" fn bit_buffer_starts_with_byte(
buf: *const BitBuffer,
byte: u8,
) -> bool
Expand description
Check whether a BitBuffer instance’s contents start with the designated byte.
§Arguments
buf (direction in) - pointer to a BitBuffer instance to be checked
byte (direction in) - byte value to be checked against
§Returns
true if data starts with designated byte, false otherwise