Name: H5Aget_create_plist
Signature:
hid_t H5Aget_create_plist(hid_t attr_id)
Purpose:
Gets an attribute creation property list identifier.
Description:
H5Aget_create_plist returns an identifier for the attribute creation property list associated with the attribute specified by attr_id.

The creation property list identifier should be released with H5Pclose.

Parameters:
Returns:
Returns an identifier for the attribute’s creation property list if successful. Otherwise returns a negative value.
Fortran90 Interface: h5aget_create_plist_f
SUBROUTINE h5aget_create_plist_f(attr_id, creation_prop_id, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: attr_id  
                            ! Identifier of the attribute 
  INTEGER(HID_T), INTENT(OUT) :: creation_prop_id 
                            ! Identifier for the attribute’s creation property
  INTEGER, INTENT(OUT) :: hdferr         
                            ! Error code:
                            ! 0 on success and -1 on failure
END SUBROUTINE h5aget_create_plist_f
	    
History: