summaryrefslogtreecommitdiffstats
path: root/src/H5Sselect.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-10-26 22:44:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-10-26 22:44:13 (GMT)
commit7dcbae97f23f8409ed8d60640b3b2a8aaed70978 (patch)
tree54ba54ec5cdcda9651d63a4471a9a9ec2204e767 /src/H5Sselect.c
parenta7b166727dce2c23c2a0c7805c3e3b8d38e4be2d (diff)
downloadhdf5-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/H5Sselect.c')
-rw-r--r--src/H5Sselect.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c
index 73e5a4d..bd7962f 100644
--- a/src/H5Sselect.c
+++ b/src/H5Sselect.c
@@ -845,7 +845,7 @@ H5S_sel_iter_release (const H5S_t *space, H5S_sel_iter_t *sel_iter)
Check whether the selection fits within the extent, with the current
offset defined.
USAGE
- hbool_t H5Sselect_void(dsid)
+ htri_t H5Sselect_void(dsid)
hid_t dsid; IN: Dataspace ID to query
RETURNS
TRUE if the selection fits within the extent, FALSE if it does not and
@@ -858,11 +858,11 @@ H5S_sel_iter_release (const H5S_t *space, H5S_sel_iter_t *sel_iter)
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-hbool_t
+htri_t
H5Sselect_valid(hid_t spaceid)
{
H5S_t *space = NULL; /* Dataspace to modify selection of */
- hbool_t ret_value=FAIL; /* return value */
+ htri_t ret_value=FAIL; /* return value */
FUNC_ENTER (H5Sselect_valid, 0);
H5TRACE1("b","i",spaceid);
@@ -885,7 +885,7 @@ H5Sselect_valid(hid_t spaceid)
Check whether the selection fits within the extent, with the current
offset defined.
USAGE
- hbool_t H5Sselect_void(space)
+ htri_t H5Sselect_void(space)
H5S_t *space; IN: Dataspace pointer to query
RETURNS
TRUE if the selection fits within the extent, FALSE if it does not and
@@ -898,10 +898,10 @@ H5Sselect_valid(hid_t spaceid)
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-hbool_t
+htri_t
H5S_select_valid (const H5S_t *space)
{
- hbool_t ret_value=FAIL; /* return value */
+ htri_t ret_value=FAIL; /* return value */
FUNC_ENTER (H5S_select_valid, FAIL);