Determines whether two references are equal
Procedure:
H5R_EQUAL ( ref1_ptr, ref2_ptr )
Signature:
htri_t H5Requal ( const H5R_ref_t *ref1_ptr, const H5R_ref_t *ref2_ptr )
Parameters:
const H5R_ref_t *ref1_ptr | IN: Pointer to reference to compare |
const H5R_ref_t *ref2_ptr | IN: Pointer to reference to compare |
Description:
H5R_EQUAL determines whether two references point to the same object, region or attribute.
The typedef H5R_ref_t is defined in H5Rpublic.h
as: typedef unsigned char H5R_ref_t[H5R_REF_BUF_SIZE];
Returns:
Returns a positive value if the references are equal. Returns 0 if the references are not equal. Returns a negative value when the function fails.
Example:
History:
Release | Change |
---|
1.12.0 | C function was introduced in this release. |
--- Last Modified: November 14, 2019 | 09:35 AM