summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Aff.F90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2022-10-17 20:37:19 (GMT)
committerGitHub <noreply@github.com>2022-10-17 20:37:19 (GMT)
commit0fd867390a005f8857447dcfd47a989d1d86c371 (patch)
tree823daa36e91bf26225d520004c223619701caad6 /fortran/src/H5Aff.F90
parentafb92a3e229a05755733c183d749bfc69548ab01 (diff)
downloadhdf5-0fd867390a005f8857447dcfd47a989d1d86c371.zip
hdf5-0fd867390a005f8857447dcfd47a989d1d86c371.tar.gz
hdf5-0fd867390a005f8857447dcfd47a989d1d86c371.tar.bz2
changed to referencing C APIs by empty brackets (Fortran) (#2167)
Diffstat (limited to 'fortran/src/H5Aff.F90')
-rw-r--r--fortran/src/H5Aff.F9058
1 files changed, 29 insertions, 29 deletions
diff --git a/fortran/src/H5Aff.F90 b/fortran/src/H5Aff.F90
index c17ee9c..0009c31 100644
--- a/fortran/src/H5Aff.F90
+++ b/fortran/src/H5Aff.F90
@@ -136,7 +136,7 @@ CONTAINS
!! \param acpl_id Attribute creation property list identifier
!! \param aapl_id Attribute access property list identifier
!!
-!! See C API: @ref hid_t H5Acreate2(hid_t loc_id, const char *attr_name, hid_t type_id, hid_t space_id, hid_t acpl_id, hid_t aapl_id);
+!! See C API: @ref H5Acreate2()
!!
SUBROUTINE h5acreate_f(loc_id, name, type_id, space_id, attr_id, &
hdferr, acpl_id, aapl_id )
@@ -193,7 +193,7 @@ CONTAINS
!! \param attr_id Attribute identifier
!! \param hdferr \fortran_error
!!
-!! See C API: @ref hid_t H5Aopen_name(hid_t loc_id, const char *name);
+!! See C API: @ref H5Aopen_name()
!!
SUBROUTINE H5Aopen_name_f(obj_id, name, attr_id, hdferr)
IMPLICIT NONE
@@ -232,7 +232,7 @@ CONTAINS
!! \param attr_id Attribute identifier
!! \param hdferr \fortran_error
!!
-!! See C API: @ref hid_t H5Aopen_idx(hid_t loc_id, unsigned idx);
+!! See C API: @ref H5Aopen_idx()
!!
SUBROUTINE H5Aopen_idx_f(obj_id, index, attr_id, hdferr)
IMPLICIT NONE
@@ -264,7 +264,7 @@ CONTAINS
!! \param space_id Attribite dataspace identifier
!! \param hdferr \fortran_error
!!
-!! See C API: @ref hid_t H5Aget_space(hid_t attr_id);
+!! See C API: @ref H5Aget_space()
!!
SUBROUTINE H5Aget_space_f(attr_id, space_id, hdferr)
IMPLICIT NONE
@@ -294,7 +294,7 @@ CONTAINS
!! \param type_id Attribute datatype identifier
!! \param hdferr \fortran_error
!!
-!! See C API: @ref hid_t H5Aget_type(hid_t attr_id);
+!! See C API: @ref H5Aget_type()
!!
SUBROUTINE H5Aget_type_f(attr_id, type_id, hdferr)
IMPLICIT NONE
@@ -325,7 +325,7 @@ CONTAINS
!! \param buf Buffer to read name in
!! \param hdferr \fortran_error
!!
-!! See C API: @ref ssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf);
+!! See C API: @ref H5Aget_name()
!!
SUBROUTINE h5aget_name_f(attr_id, size, buf, hdferr)
IMPLICIT NONE
@@ -372,7 +372,7 @@ CONTAINS
!! \param size Size, in bytes, of attribute name
!! \param lapl_id Link access property list
!!
-!! See C API: @ref ssize_t H5Aget_name_by_idx(hid_t loc_id, const char *obj_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, char *name, size_t size, hid_t lapl_id);
+!! See C API: @ref H5Aget_name_by_idx()
!!
SUBROUTINE h5aget_name_by_idx_f(loc_id, obj_name, idx_type, order, &
n, name, hdferr, size, lapl_id)
@@ -434,7 +434,7 @@ CONTAINS
!! \param attr_num Number of attributes attached to the object
!! \param hdferr \fortran_error
!!
-!! See C API: @ref int H5Aget_num_attrs(hid_t loc_id);
+!! See C API: @ref H5Aget_num_attrs()
!!
SUBROUTINE h5aget_num_attrs_f(obj_id, attr_num, hdferr)
IMPLICIT NONE
@@ -463,7 +463,7 @@ CONTAINS
!!
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Adelete(hid_t loc_id, const char *attr_name);
+!! See C API: @ref H5Adelete()
!!
SUBROUTINE H5Adelete_f(obj_id, name, hdferr)
IMPLICIT NONE
@@ -494,7 +494,7 @@ CONTAINS
!! \param attr_id Attribute identifier
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Aclose(hid_t attr_id);
+!! See C API: @ref H5Aclose()
!!
SUBROUTINE H5Aclose_f(attr_id, hdferr)
IMPLICIT NONE
@@ -520,7 +520,7 @@ CONTAINS
!! \param size Attribute storage size
!! \param hdferr \fortran_error
!!
-!! See C API: @ref hsize_t H5Aget_storage_size(hid_t attr_id);
+!! See C API: @ref H5Aget_storage_size()
!!
SUBROUTINE H5Aget_storage_size_f(attr_id, size, hdferr)
IMPLICIT NONE
@@ -551,7 +551,7 @@ CONTAINS
!! \param creation_prop_id Identifier for the attribute’s creation property
!! \param hdferr \fortran_error
!!
-!! See C API: @ref hid_t H5Aget_create_plist(hid_t attr_id);
+!! See C API: @ref H5Aget_create_plist()
!!
SUBROUTINE H5Aget_create_plist_f(attr_id, creation_prop_id, hdferr)
IMPLICIT NONE
@@ -584,7 +584,7 @@ CONTAINS
!! \param lapl_id Link access property list identifier
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Arename_by_name_async(const char *app_file, const char *app_func, unsigned app_line, hid_t loc_id, const char *obj_name, const char *old_attr_name, const char *new_attr_name, hid_t lapl_id, hid_t es_id);
+!! See C API: @ref H5Arename_by_name()
!!
SUBROUTINE H5Arename_by_name_f(loc_id, obj_name, old_attr_name, new_attr_name, &
hdferr, lapl_id)
@@ -645,7 +645,7 @@ CONTAINS
!! \param hdferr \fortran_error
!! \param aapl_id Attribute access property list
!!
-!! See C API: @ref hid_t H5Aopen(hid_t obj_id, const char *attr_name, hid_t aapl_id);
+!! See C API: @ref H5Aopen()
!!
SUBROUTINE H5Aopen_f(obj_id, attr_name, attr_id, hdferr, aapl_id)
IMPLICIT NONE
@@ -704,7 +704,7 @@ CONTAINS
!! \param hdferr \fortran_error
!! \param lapl_id Link access property list
!!
-!! See C API: @ref herr_t H5Adelete_by_idx(hid_t loc_id, const char *obj_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, hid_t lapl_id);
+!! See C API: @ref H5Adelete_by_idx()
!!
SUBROUTINE H5Adelete_by_idx_f(loc_id, obj_name, idx_type, order, n, hdferr, lapl_id)
IMPLICIT NONE
@@ -753,7 +753,7 @@ CONTAINS
!! \param lapl_id Link access property list
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Adelete_by_name(hid_t loc_id, const char *obj_name, const char *attr_name, hid_t lapl_id);
+!! See C API: @ref H5Adelete_by_name()
!!
SUBROUTINE H5Adelete_by_name_f(loc_id, obj_name, attr_name, hdferr, lapl_id)
IMPLICIT NONE
@@ -816,7 +816,7 @@ CONTAINS
!! \param aapl_id Attribute access property list.
!! \param lapl_id Link access property list.
!!
-!! See C API: @ref hid_t H5Aopen_by_idx(hid_t loc_id, const char *obj_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, hid_t aapl_id, hid_t lapl_id);
+!! See C API: @ref H5Aopen_by_idx()
!!
SUBROUTINE H5Aopen_by_idx_f(loc_id, obj_name, idx_type, order, n, attr_id, hdferr, aapl_id, lapl_id)
IMPLICIT NONE
@@ -877,7 +877,7 @@ CONTAINS
!! \param data_size Indicates the size, in the number of characters, of the attribute.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Aget_info(hid_t attr_id, H5A_info_t *ainfo );
+!! See C API: @ref H5Aget_info()
!!
SUBROUTINE H5Aget_info_f(attr_id, f_corder_valid, corder, cset, data_size, hdferr)
IMPLICIT NONE
@@ -927,7 +927,7 @@ CONTAINS
!! \param hdferr \fortran_error
!! \param lapl_id Link access property list
!!
-!! See C API: @ref herr_t H5Aget_info_by_idx(hid_t loc_id, const char *obj_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, H5A_info_t *ainfo, hid_t lapl_id);
+!! See C API: @ref H5Aget_info_by_idx()
!!
SUBROUTINE H5Aget_info_by_idx_f(loc_id, obj_name, idx_type, order, n, &
f_corder_valid, corder, cset, data_size, hdferr, lapl_id)
@@ -1000,7 +1000,7 @@ CONTAINS
!! \param hdferr \fortran_error
!! \param lapl_id Link access property list
!!
-!! See C API: @ref herr_t H5Aget_info_by_name(hid_t loc_id, const char *obj_name, const char *attr_name, H5A_info_t *ainfo, hid_t lapl_id);
+!! See C API: @ref H5Aget_info_by_name()
!!
SUBROUTINE H5Aget_info_by_name_f(loc_id, obj_name, attr_name, &
f_corder_valid, corder, cset, data_size, hdferr, lapl_id)
@@ -1071,7 +1071,7 @@ CONTAINS
!! \param aapl_id Attribute access property list identifier (Currently not used.)
!! \param lapl_id Link access property list
!!
-!! See C API: @ref hid_t H5Acreate_by_name(hid_t loc_id, const char *obj_name, const char *attr_name, hid_t type_id, hid_t space_id, hid_t acpl_id, hid_t aapl_id, hid_t lapl_id);
+!! See C API: @ref H5Acreate_by_name()
!!
SUBROUTINE H5Acreate_by_name_f(loc_id, obj_name, attr_name, type_id, space_id, attr, hdferr, &
acpl_id, aapl_id, lapl_id)
@@ -1141,7 +1141,7 @@ CONTAINS
!! \param attr_exists Attribute exists status
!! \param hdferr \fortran_error
!!
-!! See C API: @ref htri_t H5Aexists(hid_t obj_id, const char *attr_name);
+!! See C API: @ref H5Aexists()
!!
SUBROUTINE H5Aexists_f(obj_id, attr_name, attr_exists, hdferr)
IMPLICIT NONE
@@ -1185,7 +1185,7 @@ CONTAINS
!! \param hdferr \fortran_error
!! \param lapl_id Link access property list identifier
!!
-!! See C API: @ref htri_t H5Aexists_by_name(hid_t obj_id, const char *obj_name, const char *attr_name, hid_t lapl_id);
+!! See C API: @ref H5Aexists_by_name()
!!
SUBROUTINE H5Aexists_by_name_f(loc_id, obj_name, attr_name, attr_exists, hdferr, lapl_id)
IMPLICIT NONE
@@ -1242,7 +1242,7 @@ CONTAINS
!! \param aapl_id Attribute access property list (Currently unused; should be passed in as H5P_DEFAULT.)
!! \param lapl_id Link access property list identifier
!!
-!! See C API: @ref hid_t H5Aopen_by_name(hid_t loc_id, const char *obj_name, const char *attr_name, hid_t aapl_id, hid_t lapl_id);
+!! See C API: @ref H5Aopen_by_name()
!!
SUBROUTINE H5Aopen_by_name_f(loc_id, obj_name, attr_name, attr_id, hdferr, aapl_id, lapl_id)
IMPLICIT NONE
@@ -1299,7 +1299,7 @@ CONTAINS
!! \param new_attr_name New attribute name
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Arename(hid_t loc_id, const char *old_name, const char *new_name);
+!! See C API: @ref H5Arename()
!!
SUBROUTINE H5Arename_f(loc_id, old_attr_name, new_attr_name, hdferr)
IMPLICIT NONE
@@ -1347,7 +1347,7 @@ CONTAINS
!! \param buf Data to be written.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Awrite(hid_t attr_id, hid_t type_id, const void *buf);
+!! See C API: @ref H5Awrite()
!!
SUBROUTINE h5awrite_f(attr_id, memtype_id, buf, hdferr)
INTEGER(HID_T) , INTENT(IN) :: attr_id
@@ -1370,7 +1370,7 @@ CONTAINS
!! dim(k) has value of the k-th dimension of buffer buf; values are ignored if buf is a scalar.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Awrite(hid_t attr_id, hid_t type_id, const void *buf);
+!! See C API: @ref H5Awrite()
!!
SUBROUTINE h5awrite_f(attr_id, memtype_id, buf, dims, hdferr)
INTEGER(HID_T) , INTENT(IN) :: attr_id
@@ -1391,7 +1391,7 @@ CONTAINS
!! \param buf Buffer for data to be read.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Aread(hid_t attr_id, hid_t type_id, void *buf);
+!! See C API: @ref H5Aread()
!!
SUBROUTINE h5aread_f(attr_id, memtype_id, buf, hdferr)
INTEGER(HID_T), INTENT(IN) :: attr_id
@@ -1414,7 +1414,7 @@ CONTAINS
!! dim(k) has value of the k-th dimension of buffer buf; values are ignored if buf is a scalar.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Aread(hid_t attr_id, hid_t type_id, void *buf);
+!! See C API: @ref H5Aread()
!!
SUBROUTINE h5aread_f(attr_id, memtype_id, buf, dims, hdferr)
INTEGER(HID_T) , INTENT(IN) :: attr_id