pub unsafe extern "C" fn bit_lib_set_bit(
    data: *mut u8,
    position: usize,
    bit: bool
)
Expand description

@brief Set a bit in a byte array. @param data array to set bit in @param position The position of the bit to set. @param bit bit value to set