hdf5-sys 0.8.1

Native bindings to the HDF5 library.
Documentation
1
2
3
4
5
6
//! Memory managment
use crate::internal_prelude::*;

pub type H5MM_allocate_t =
    Option<extern "C" fn(size: size_t, alloc_info: *mut c_void) -> *mut c_void>;
pub type H5MM_free_t = Option<extern "C" fn(mem: *mut c_void, free_info: *mut c_void)>;