- obsolete hdf5_xyz() functions replaced

- adapted to coding style
This commit is contained in:
2010-05-27 13:38:57 +00:00
parent f8f1590df8
commit 45637df399
8 changed files with 555 additions and 292 deletions
+1 -1
View File
@@ -6,11 +6,11 @@
#include "h5_attribs.h"
#include "h5_errorhandling.h"
#include "h5_hdf5.h"
#include "h5_maps.h"
#include "h5_openclose.h"
#include "h5_readwrite.h"
#include "h5u_readwrite.h"
#include "hdf5_misc.h"
#include "h5t_core.h"
+46
View File
@@ -0,0 +1,46 @@
#ifndef __H5_HDF5_H
#define __H5_HDF5_H
ssize_t
h5_get_num_hdf5_groups (
h5_file_t* const f,
const hid_t loc_id
);
ssize_t
h5_get_num_hdf5_groups_matching_prefix (
h5_file_t* const f,
const hid_t loc_id,
char* prefix
);
h5_err_t
h5_get_hdf5_groupname_by_idx (
h5_file_t* const f,
hid_t loc_id,
hsize_t idx,
char *name,
size_t size
);
ssize_t
h5_get_num_hdf5_datasets (
h5_file_t* const f,
const hid_t loc_id
);
h5_err_t
h5_get_hdf5_datasetname_by_idx (
h5_file_t* const f,
hid_t loc_id,
hsize_t idx,
char *name,
size_t size
);
const char *
h5_get_objname (
hid_t id
);
#endif