hdf5_hl_sys/
lib.rs

1//! Rust bindings to `hdf5_hl`.
2
3#![feature(c_size_t)]
4
5#[link(name = "hdf5_hl")]
6extern "C" {}
7
8pub mod h5pt;