summaryrefslogtreecommitdiffstats
path: root/src/H5Sselect.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-09-01 03:35:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-09-01 03:35:23 (GMT)
commit4aa79bb211349c6696677076c02b674275aff797 (patch)
treed78887d59edea5596c24cc9398a35eb2cc221cee /src/H5Sselect.c
parent5aa61b6fcfc99ff4c6b3cfc1c639e062313564ee (diff)
downloadhdf5-4aa79bb211349c6696677076c02b674275aff797.zip
hdf5-4aa79bb211349c6696677076c02b674275aff797.tar.gz
hdf5-4aa79bb211349c6696677076c02b674275aff797.tar.bz2
[svn-r641] Changed function names for beta release.
Diffstat (limited to 'src/H5Sselect.c')
-rw-r--r--src/H5Sselect.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c
index 52c1636..d7478d3 100644
--- a/src/H5Sselect.c
+++ b/src/H5Sselect.c
@@ -641,11 +641,11 @@ done:
/*--------------------------------------------------------------------------
NAME
- H5Sselect_npoints
+ H5Sget_select_npoints
PURPOSE
Get the number of elements in current selection
USAGE
- hsize_t H5Sselect_npoints(dsid)
+ hsize_t H5Sget_select_npoints(dsid)
hid_t dsid; IN: Dataspace ID of selection to query
RETURNS
The number of elements in selection on success, 0 on failure
@@ -657,12 +657,12 @@ done:
REVISION LOG
--------------------------------------------------------------------------*/
hsize_t
-H5Sselect_npoints(hid_t spaceid)
+H5Sget_select_npoints(hid_t spaceid)
{
H5S_t *space = NULL; /* Dataspace to modify selection of */
hsize_t ret_value=0; /* return value */
- FUNC_ENTER (H5Sselect_npoints, 0);
+ FUNC_ENTER (H5Sget_select_npoints, 0);
H5TRACE1("h","i",spaceid);
/* Check args */
@@ -674,7 +674,7 @@ H5Sselect_npoints(hid_t spaceid)
ret_value = H5S_select_npoints(space);
FUNC_LEAVE (ret_value);
-} /* H5Sselect_npoints() */
+} /* H5Sget_select_npoints() */
/*--------------------------------------------------------------------------
NAME
@@ -725,7 +725,7 @@ H5S_select_npoints (const H5S_t *space)
}
FUNC_LEAVE (ret_value);
-} /* H5Sselect_npoints() */
+} /* H5S_select_npoints() */
/*--------------------------------------------------------------------------
NAME