H5Tis_variable_str
(
hid_t dtype_id
)
H5Tis_variable_str
determines whether the datatype
identified in dtype_id
is a variable-length string.
This function can be used to distinguish between fixed and variable-length string datatypes.
hid_t dtype_id |
IN: Datatype identifier. |
TRUE
or FALSE
if successful;
otherwise returns a negative value.
SUBROUTINE h5tis_variable_str_f(type_id, status, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier LOGICAL, INTENT(OUT) :: status ! Logical flag: ! .TRUE. if datatype is a ! variable string ! .FALSE. otherwise INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5tis_variable_str_f
Release | C |
1.6.0 | Function introduced in this release. |