Gets the tag associated with an opaque datatype
Procedure:
Signature:
char *H5Tget_tag( hid_t dtype_id )
SUBROUTINE h5tget_tag_f(type_id, tag,taglen, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier
CHARACTER(LEN=*), INTENT(OUT) :: tag ! Unique ASCII string with which the
! opaque datatype is to be tagged
INTEGER, INTENT(OUT) :: taglen ! Length of tag
INTEGER, INTENT(OUT) :: hdferr ! Error code
END SUBROUTINE h5tget_tag_f
Parameters:
hid_t dtype_id | IN: Datatype identifier for the opaque datatype |
Description:
H5T_GET_TAG returns the tag associated with the opaque datatype dtype_id
.
The tag is returned via a pointer to an allocated string, which the caller must free.
Returns:
Returns a pointer to an allocated string if successful; otherwise returns NULL
.
Example:
--- Last Modified: May 17, 2019 | 03:24 PM