summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Gff.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/H5Gff.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/H5Gff.F90')
-rw-r--r--fortran/src/H5Gff.F9032
1 files changed, 16 insertions, 16 deletions
diff --git a/fortran/src/H5Gff.F90 b/fortran/src/H5Gff.F90
index 6e89ee6..f003e2d 100644
--- a/fortran/src/H5Gff.F90
+++ b/fortran/src/H5Gff.F90
@@ -58,7 +58,7 @@ CONTAINS
!! \param gcpl_id Property list for group creation.
!! \param gapl_id Property list for group access.
!!
-!! See C API: @ref hid_t H5Gcreate2(hid_t loc_id, const char *name, hid_t lcpl_id, hid_t gcpl_id, hid_t gapl_id);
+!! See C API: @ref H5Gcreate2()
!!
SUBROUTINE h5gcreate_f(loc_id, name, grp_id, hdferr, size_hint, lcpl_id, gcpl_id, gapl_id)
IMPLICIT NONE
@@ -121,7 +121,7 @@ CONTAINS
!! \param hdferr \fortran_error
!! \param gapl_id Group access property list identifier.
!!
-!! See C API: @ref hid_t H5Gopen2(hid_t loc_id, const char *name, hid_t gapl_id);
+!! See C API: @ref H5Gopen2()
!!
SUBROUTINE h5gopen_f(loc_id, name, grp_id, hdferr, gapl_id)
IMPLICIT NONE
@@ -161,7 +161,7 @@ CONTAINS
!! \param grp_id Group identifier.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Gclose(hid_t group_id);
+!! See C API: @ref H5Gclose()
!!
SUBROUTINE h5gclose_f(grp_id, hdferr)
IMPLICIT NONE
@@ -272,7 +272,7 @@ CONTAINS
!! \param new_name New name for the object.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Glink(hid_t cur_loc_id, H5G_link_t type, const char *cur_name, const char *new_name);
+!! See C API: @ref H5Glink()
!!
SUBROUTINE h5glink_f(loc_id, link_type, current_name, &
new_name, hdferr)
@@ -324,7 +324,7 @@ CONTAINS
!! \param new_name New name for the object.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Glink2(hid_t cur_loc_id, const char *cur_name, H5G_link_t type, hid_t new_loc_id, const char *new_name);
+!! See C API: @ref H5Glink2()
!!
SUBROUTINE h5glink2_f(cur_loc_id, cur_name, link_type, new_loc_id, &
new_name, hdferr)
@@ -372,7 +372,7 @@ CONTAINS
!! \param name Name of the object to unlink.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Gunlink(hid_t loc_id, const char *name);
+!! See C API: @ref H5Gunlink()
!!
SUBROUTINE h5gunlink_f(loc_id, name, hdferr)
IMPLICIT NONE
@@ -405,7 +405,7 @@ CONTAINS
!! \param new_name Object&apos;s new name.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Gmove(hid_t src_loc_id, const char *src_name, const char *dst_name);
+!! See C API: @ref H5Gmove()
!!
SUBROUTINE h5gmove_f(loc_id, name, new_name, hdferr)
IMPLICIT NONE
@@ -443,7 +443,7 @@ CONTAINS
!! \param dst_name Object&apos;s new name.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Gmove2(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, const char *dst_name);
+!! See C API: @ref H5Gmove2()
!!
SUBROUTINE h5gmove2_f(src_loc_id, src_name, dst_loc_id, dst_name, hdferr)
IMPLICIT NONE
@@ -484,7 +484,7 @@ CONTAINS
!! \param buffer A buffer to hold the name of the object being sought.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Gget_linkval(hid_t loc_id, const char *name, size_t size, char *buf );
+!! See C API: @ref H5Gget_linkval()
!!
SUBROUTINE h5gget_linkval_f(loc_id, name, size, buffer, hdferr)
IMPLICIT NONE
@@ -521,7 +521,7 @@ CONTAINS
!! \param comment Comment to set for the object.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref herr_t H5Gset_comment(hid_t loc_id, const char *name, const char *comment);
+!! See C API: @ref H5Gset_comment()
!!
SUBROUTINE h5gset_comment_f(loc_id, name, comment, hdferr)
IMPLICIT NONE
@@ -560,7 +560,7 @@ CONTAINS
!! \param buffer Buffer to hold object&apos;s comment.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref int H5Gget_comment(hid_t loc_id, const char *name, size_t bufsize, char *buf);
+!! See C API: @ref H5Gget_comment()
!!
SUBROUTINE h5gget_comment_f(loc_id, name, size, buffer, hdferr)
IMPLICIT NONE
@@ -598,7 +598,7 @@ CONTAINS
!! \param gcpl_id Group creation property list identifier.
!! \param gapl_id Group access property list identifier.
!!
-!! See C API: @ref hid_t H5Gcreate_anon(hid_t loc_id, hid_t gcpl_id, hid_t gapl_id);
+!! See C API: @ref H5Gcreate_anon()
!!
SUBROUTINE h5Gcreate_anon_f(loc_id, grp_id, hdferr, gcpl_id, gapl_id)
IMPLICIT NONE
@@ -639,7 +639,7 @@ CONTAINS
!! \param gcpl_id Group creation property list identifier.
!! \param hdferr \fortran_error
!!
-!! See C API: @ref hid_t H5Gget_create_plist(hid_t group_id);
+!! See C API: @ref H5Gget_create_plist()
!!
SUBROUTINE h5gget_create_plist_f(grp_id, gcpl_id, hdferr)
IMPLICIT NONE
@@ -673,7 +673,7 @@ CONTAINS
!! \param hdferr \fortran_error
!! \param mounted Whether group has a file mounted on it.
!!
-!! See C API: @ref herr_t H5Gget_info(hid_t loc_id, H5G_info_t *ginfo);
+!! See C API: @ref H5Gget_info()
!!
SUBROUTINE h5gget_info_f(group_id, storage_type, nlinks, max_corder, hdferr, mounted)
IMPLICIT NONE
@@ -729,7 +729,7 @@ CONTAINS
!! \param lapl_id Link access property list.
!! \param mounted Whether group has a file mounted on it.
!!
-!! See C API: @ref herr_t H5Gget_info_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, H5G_info_t *ginfo, hid_t lapl_id);
+!! See C API: @ref H5Gget_info_by_idx()
!!
SUBROUTINE h5gget_info_by_idx_f(loc_id, group_name, index_type, order, n, &
storage_type, nlinks, max_corder, hdferr, lapl_id, mounted)
@@ -806,7 +806,7 @@ CONTAINS
!! \param lapl_id Link access property list.
!! \param mounted Whether group has a file mounted on it.
!!
-!! See C API: @ref herr_t H5Gget_info_by_name(hid_t loc_id, const char *name, H5G_info_t *ginfo, hid_t lapl_id);
+!! See C API: @ref H5Gget_info_by_name()
!!
SUBROUTINE h5gget_info_by_name_f(loc_id, group_name, &
storage_type, nlinks, max_corder, hdferr, lapl_id, mounted)