Exemplo n.º 1
0
// 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)
	}
}
Exemplo n.º 2
0
// Initializes the HDF5 library.
func init_hdf5() error {
	return togo_err(C.H5open())
}