Last modified: 10 December 2015
Name: H5Sis_simple
Signature:
htri_t H5Sis_simple( hid_t space_id )

Purpose:
Determines whether a dataspace is a simple dataspace.

Description:
H5Sis_simple determines whether a dataspace is a simple dataspace. [Currently, all dataspace objects are simple dataspaces; complex dataspace support will be added in the future.]

Parameters:
hid_t space_id     IN: Identifier of the dataspace to query

Returns:
Returns a positive value if the specified dataspace is a simple dataspace.
Returns 0 if the specified dataspace is not a simple dataspace.
Returns a negative value when the function fails.

Fortran90 Interface: h5sis_simple_f
SUBROUTINE h5sis_simple_f(space_id, flag, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: space_id    ! Dataspace identifier 
  LOGICAL, INTENT(OUT) :: flag              ! Flag, indicates if dataspace
                                            ! is simple or not: 
                                            ! TRUE or FALSE  
  INTEGER, INTENT(OUT) :: hdferr            ! Error code
                                            ! 0 on success and -1 on failure 
END SUBROUTINE h5sis_simple_f