diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2010-02-10 16:21:53 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2010-02-10 16:21:53 (GMT) |
commit | 5adc0f380723dd24feb2f294ec59eecc61d06d09 (patch) | |
tree | 2289efa28bd0a3f65460e0506c4fd82e85c0b346 /fortran/src | |
parent | a79ba5b13561488c2a5f34efab61a21e9d22b40e (diff) | |
download | hdf5-5adc0f380723dd24feb2f294ec59eecc61d06d09.zip hdf5-5adc0f380723dd24feb2f294ec59eecc61d06d09.tar.gz hdf5-5adc0f380723dd24feb2f294ec59eecc61d06d09.tar.bz2 |
[svn-r18226] Description:
Added H5T_CSET_UTF8_F to the list of possible values for cset in the description of h5tset_cset_f and h5tget_cset_f.
Tested: N/A, edited comments only.
Diffstat (limited to 'fortran/src')
-rw-r--r-- | fortran/src/H5Tff.f90 | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/fortran/src/H5Tff.f90 b/fortran/src/H5Tff.f90 index 82220c7..c6c96d0 100644 --- a/fortran/src/H5Tff.f90 +++ b/fortran/src/H5Tff.f90 @@ -1510,8 +1510,9 @@ CONTAINS ! type_id - datatype identifier ! Outputs: ! cset - character set type of a string datatype -! Possible values of padding type are: +! Possible values are: ! H5T_CSET_ASCII_F = 0 +! H5T_CSET_UTF8_F ! hdferr: - error code ! Success: 0 ! Failure: -1 @@ -1532,8 +1533,9 @@ CONTAINS IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier INTEGER, INTENT(OUT) :: cset ! character set type of a string datatype - ! Possible values of padding type are: - !H5T_CSET_ASCII_F = 0 + ! Possible values are: + ! H5T_CSET_ASCII_F = 0 + ! H5T_CSET_UTF8_F INTEGER, INTENT(OUT) :: hdferr ! Error code ! INTEGER, EXTERNAL :: h5tget_cset_c @@ -1561,8 +1563,9 @@ CONTAINS ! Inputs: ! type_id - datatype identifier ! cset - character set type of a string datatype -! Possible values of padding type are: +! Possible values are: ! H5T_CSET_ASCII_F = 0 +! H5T_CSET_UTF8_F ! Outputs: ! hdferr: - error code ! Success: 0 @@ -1584,8 +1587,10 @@ CONTAINS IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier INTEGER, INTENT(IN) :: cset !character set type of a string datatype - !Possible values of padding type are: - !H5T_CSET_ASCII_F = 0 + !Possible values are: + ! H5T_CSET_ASCII_F = 0 + ! H5T_CSET_UTF8_F + INTEGER, INTENT(OUT) :: hdferr ! Error code ! INTEGER, EXTERNAL :: h5tset_cset_c |