Last modified: 17 August 2010
Name: H5Sextent_equal
Signature:
htri_t H5Sextent_equal( hid_t space1_id, hid_t space2_id )

Purpose:
Determines whether two dataspace extents are equal.

Description:
H5Sextent_equal determines whether the dataspace extents of two dataspaces, space1_id and space2_id, are equal.

Parameters:
hid_t space1_id IN: First dataspace identifier.
hid_t space2_id     IN: Second dataspace identifier.

Returns:
Returns TRUE if equal, FALSE if unequal, if successful; otherwise returns a negative value.
Fortran90 Interface: h5sextent_equal_f
SUBROUTINE h5sextent_equal_f(space1_id, space2_id, equal, hdferr)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: space1_id ! First dataspace identifier
  INTEGER(HID_T), INTENT(IN) :: space2_id ! Second dataspace identifier
  LOGICAL, INTENT(OUT) :: Equal           ! .TRUE. if equal, .FALSE. if unequal
  INTEGER, INTENT(OUT) :: hdferr          ! Error code
                                          ! 0 on success and -1 on failure 
END SUBROUTINE h5sextent_equal_f