hdf5-sys 0.2.6

The package provides bindings to HDF5.
Documentation
use libc::{c_int, c_longlong, c_uint, c_ulonglong};

pub type herr_t = c_int;
pub type htri_t = c_int;
pub type hsize_t = c_ulonglong;
pub type hssize_t = c_longlong;

extern "C" {
    pub fn H5get_libversion(majnum: *mut c_uint, minnum: *mut c_uint, relnum: *mut c_uint)
                            -> herr_t;
}