pub unsafe extern "C" fn Write2DRowColArray(
array: *mut *mut c_void,
filename: *mut c_char,
nrow: c_long,
ncol: c_long,
size: usize,
) -> c_intExpand description
Write data in a 2-D row-and-column array to a file. Data elements have the number of bytes specified by size (use sizeof() when calling this function. The format of the array is nrow-1 rows of ncol elements, followed by nrow rows of ncol-1 elements each.