diff options
author | Jacob Smith <jake.smith@hdfgroup.org> | 2018-12-31 17:27:21 (GMT) |
---|---|---|
committer | Jacob Smith <jake.smith@hdfgroup.org> | 2018-12-31 21:02:16 (GMT) |
commit | a8dc9793cb19a525dc1663281bc7bd575680d5a8 (patch) | |
tree | a13dfade360ff618e90c6c82dc579c45b7a26d5c /src/H5Fquery.c | |
parent | 43bd13837d0c2e50651cbded2fae90d9189d1b73 (diff) | |
download | hdf5-a8dc9793cb19a525dc1663281bc7bd575680d5a8.zip hdf5-a8dc9793cb19a525dc1663281bc7bd575680d5a8.tar.gz hdf5-a8dc9793cb19a525dc1663281bc7bd575680d5a8.tar.bz2 |
Incoporate minimized dataset headers code and tests.
Diffstat (limited to 'src/H5Fquery.c')
-rw-r--r-- | src/H5Fquery.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/H5Fquery.c b/src/H5Fquery.c index be24072..e02e402 100644 --- a/src/H5Fquery.c +++ b/src/H5Fquery.c @@ -514,6 +514,25 @@ H5F_sym_leaf_k(const H5F_t *f) /*------------------------------------------------------------------------- + * Function: H5F_get_min_dset_ohdr + * + * Purpose: Get the setting flag for minimized dataset object headers + * + * Return: TRUE/FALSE as set in file + *------------------------------------------------------------------------- + */ +hbool_t +H5F_get_min_dset_ohdr(const H5F_t *f) +{ + FUNC_ENTER_NOAPI_NOINIT_NOERR + + HDassert(f); + + FUNC_LEAVE_NOAPI(f->shared->crt_dset_min_ohdr_flag) +} /* end H5F_get_min_dset_ohdr */ + + +/*------------------------------------------------------------------------- * Function: H5F_Kvalue * * Purpose: Replaced a macro to retrieve a B-tree key value for a certain |