summaryrefslogtreecommitdiffstats
path: root/src/H5G.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2016-12-03 01:09:17 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2016-12-03 01:09:17 (GMT)
commitd7020bb17ac90ccfb2f263c4e5a33d6871a345d2 (patch)
tree9901b2769aab283070f0be1c5d76bacca9f8fbb2 /src/H5G.c
parent719759ff8f192b0f391b69b4f157d371c74d8acb (diff)
downloadhdf5-d7020bb17ac90ccfb2f263c4e5a33d6871a345d2.zip
hdf5-d7020bb17ac90ccfb2f263c4e5a33d6871a345d2.tar.gz
hdf5-d7020bb17ac90ccfb2f263c4e5a33d6871a345d2.tar.bz2
Add group create/open/close, various fixes.
Diffstat (limited to 'src/H5G.c')
-rw-r--r--src/H5G.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/H5G.c b/src/H5G.c
index 5d44a8f..051341d 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -145,6 +145,32 @@ static hbool_t H5G_top_package_initialize_s = FALSE;
/*-------------------------------------------------------------------------
+ * Function: H5G_init
+ *
+ * Purpose: Initialize the interface from some other package.
+ *
+ * Return: Success: non-negative
+ * Failure: negative
+ *
+ * Programmer: Mohamad Chaarawi
+ * July 2013
+ *
+ *-------------------------------------------------------------------------
+ */
+herr_t
+H5G_init(void)
+{
+ herr_t ret_value = SUCCEED; /* Return value */
+
+ FUNC_ENTER_NOAPI(FAIL)
+ /* FUNC_ENTER() does all the work */
+
+done:
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5G_init() */
+
+
+/*-------------------------------------------------------------------------
* Function: H5G__init_package
*
* Purpose: Initializes the H5G interface.