pub unsafe extern "C" fn bit_lib_test_parity(
    data: *const u8,
    position: usize,
    length: u8,
    parity: BitLibParity,
    parity_length: u8
) -> bool
Expand description

@brief Test parity of bit array, check parity for every parity_length block from start

@param data Bit array @param position Start position @param length Bit count @param parity Parity to test against @param parity_length Parity block length @return true @return false