summaryrefslogtreecommitdiffstats
path: root/src/H5Vprivate.h
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/H5Vprivate.h
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/H5Vprivate.h')
-rw-r--r--src/H5Vprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Vprivate.h b/src/H5Vprivate.h
index 0f29e7e..cfcc5be 100644
--- a/src/H5Vprivate.h
+++ b/src/H5Vprivate.h
@@ -42,10 +42,10 @@
hsize_t H5V_hyper_stride(intn n, const hsize_t *size,
const hsize_t *total_size, const hssize_t *offset,
hssize_t *stride);
-hbool_t H5V_hyper_disjointp(intn n, const hssize_t *offset1,
+htri_t H5V_hyper_disjointp(intn n, const hssize_t *offset1,
const hsize_t *size1, const hssize_t *offset2,
const hsize_t *size2);
-hbool_t H5V_hyper_eq(intn n, const hssize_t *offset1, const hsize_t *size1,
+htri_t H5V_hyper_eq(intn n, const hssize_t *offset1, const hsize_t *size1,
const hssize_t *offset2, const hsize_t *size2);
herr_t H5V_hyper_fill(intn n, const hsize_t *_size, const hsize_t *total_size,
const hssize_t *offset, void *_dst, uintn fill_value);
@@ -116,7 +116,7 @@ H5V_vector_reduce_product(intn n, const hsize_t *v)
*
*-------------------------------------------------------------------------
*/
-static inline hbool_t __unused__
+static inline htri_t __unused__
H5V_vector_zerop_u(intn n, const hsize_t *v)
{
if (!v) return TRUE;
@@ -143,7 +143,7 @@ H5V_vector_zerop_u(intn n, const hsize_t *v)
*
*-------------------------------------------------------------------------
*/
-static inline hbool_t __unused__
+static inline htri_t __unused__
H5V_vector_zerop_s(intn n, const hssize_t *v)
{
if (!v) return TRUE;