// initialize the hdf5 library func init() { err := h5err(C.H5open()) if err != nil { err_str := fmt.Sprintf("pb calling H5open(): %s", err) panic(err_str) } }
// Initializes the HDF5 library. func init_hdf5() error { return togo_err(C.H5open()) }