pub unsafe extern "C" fn bit_lib_remove_bit_every_nth(
    data: *mut u8,
    position: usize,
    length: u8,
    n: u8
) -> usize
Expand description

@brief Remove bit every n in array and shift array left. Useful to remove parity.

@param data Bit array @param position Start position @param length Bit count @param n every n bit will be removed @return size_t