pub unsafe extern "C" fn bit_lib_copy_bits(
data: *mut u8,
position: usize,
length: usize,
source: *const u8,
source_position: usize,
)Expand description
Copy bits from source to destination.
ยงArguments
data- destination arrayposition- position in destination arraylength- length of bits to copysource- source arraysource_position- position in source array