I need an extern "C"
FFI function in Rust and want to accept an array of fixed size. The C code passes something like:
// C code
extern int(*)[4] call_rust_funct(unsigned char (*)[3]);
....
unsigned char a[] = { 11, 255, 212 };
int(*p)[4] = call_rust_funct(&a);
How do I write my Rust function for it ?
// Pseudo code - DOESN'T COMPILE
pub unsafe extern "C" fn call_rust_funct(_p: *mut u8[3]) -> *mut i32[4] {
Box::into_raw(Box::new([99i32; 4]))
}
You just need to use Rust's syntax for fixed size arrays:
Or you can always use
*mut std::os::raw::c_void
and transmute it to the correct type.