diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 22:44:13 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 22:44:13 (GMT) |
commit | 7dcbae97f23f8409ed8d60640b3b2a8aaed70978 (patch) | |
tree | 54ba54ec5cdcda9651d63a4471a9a9ec2204e767 /src/H5S.c | |
parent | a7b166727dce2c23c2a0c7805c3e3b8d38e4be2d (diff) | |
download | hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.zip hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.gz hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.bz2 |
[svn-r800] Made a "htri_t" as a return value from "boolean" functions returning
TRUE/FALSE/FAIL, hbool_t is now strictly for true boolean values.
Diffstat (limited to 'src/H5S.c')
-rw-r--r-- | src/H5S.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1182,7 +1182,7 @@ H5S_cmp(const H5S_t *ds1, const H5S_t *ds2) PURPOSE Check if a dataspace is simple (internal) USAGE - hbool_t H5S_is_simple(sdim) + htri_t H5S_is_simple(sdim) H5S_t *sdim; IN: Pointer to dataspace object to query RETURNS TRUE/FALSE/FAIL @@ -1190,10 +1190,10 @@ H5S_cmp(const H5S_t *ds1, const H5S_t *ds2) This function determines the if a dataspace is "simple". ie. if it has orthogonal, evenly spaced dimensions. --------------------------------------------------------------------------*/ -hbool_t +htri_t H5S_is_simple(const H5S_t *sdim) { - hbool_t ret_value = FAIL; + htri_t ret_value = FAIL; FUNC_ENTER(H5S_is_simple, FAIL); @@ -1211,7 +1211,7 @@ H5S_is_simple(const H5S_t *sdim) PURPOSE Check if a dataspace is simple USAGE - hbool_t H5Sis_simple(space_id) + htri_t H5Sis_simple(space_id) hid_t space_id; IN: ID of dataspace object to query RETURNS TRUE/FALSE/FAIL @@ -1219,11 +1219,11 @@ H5S_is_simple(const H5S_t *sdim) This function determines the if a dataspace is "simple". ie. if it has orthogonal, evenly spaced dimensions. --------------------------------------------------------------------------*/ -hbool_t +htri_t H5Sis_simple(hid_t space_id) { H5S_t *space = NULL; /* dataspace to modify */ - hbool_t ret_value = FAIL; + htri_t ret_value = FAIL; FUNC_ENTER(H5Sis_simple, FAIL); H5TRACE1("b","i",space_id); |