summaryrefslogtreecommitdiffstats
path: root/src/H5T.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/H5T.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/H5T.c')
-rw-r--r--src/H5T.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5T.c b/src/H5T.c
index 985bd05..916bc87 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -1010,7 +1010,7 @@ H5Tcommit(hid_t loc_id, const char *name, hid_t type_id)
*
*-------------------------------------------------------------------------
*/
-hbool_t
+htri_t
H5Tcommitted(hid_t type_id)
{
H5T_t *type = NULL;
@@ -1161,12 +1161,12 @@ H5Tclose(hid_t type_id)
*
*-------------------------------------------------------------------------
*/
-hbool_t
+htri_t
H5Tequal(hid_t type1_id, hid_t type2_id)
{
const H5T_t *dt1 = NULL;
const H5T_t *dt2 = NULL;
- hbool_t ret_value = FAIL;
+ htri_t ret_value = FAIL;
FUNC_ENTER(H5Tequal, FAIL);
H5TRACE2("b","ii",type1_id,type2_id);
@@ -3820,7 +3820,7 @@ H5T_close(H5T_t *dt)
*
*-------------------------------------------------------------------------
*/
-hbool_t
+htri_t
H5T_is_atomic(const H5T_t *dt)
{
FUNC_ENTER(H5T_is_atomic, FAIL);