H5Tget_tag
(
hid_t dtype_id
)
H5Tget_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.
hid_t dtype_id |
IN: Datatype identifier for the opaque datatype. |
NULL
.
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 ! 0 on success and -1 on failure END SUBROUTINE h5tget_tag_f