summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5tools_utils.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-05-14 21:54:59 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-05-14 21:54:59 (GMT)
commita6698e571c3e08084e1b572ec29ce66c1d183214 (patch)
treea558a6886bb97417c2191d514132f17a3ac66d48 /tools/lib/h5tools_utils.c
parentf336441f7c57b2820baaebfd38d7f7d3b9bc05b7 (diff)
downloadhdf5-a6698e571c3e08084e1b572ec29ce66c1d183214.zip
hdf5-a6698e571c3e08084e1b572ec29ce66c1d183214.tar.gz
hdf5-a6698e571c3e08084e1b572ec29ce66c1d183214.tar.bz2
[svn-r18816] Move progname and d_status functions from h5tools to h5tools_util
Tested: linux and windows
Diffstat (limited to 'tools/lib/h5tools_utils.c')
-rw-r--r--tools/lib/h5tools_utils.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/lib/h5tools_utils.c b/tools/lib/h5tools_utils.c
index 757d4d7..ca1caa1 100644
--- a/tools/lib/h5tools_utils.c
+++ b/tools/lib/h5tools_utils.c
@@ -39,6 +39,8 @@ int nCols = 80;
int opt_err = 1; /*get_option prints errors if this is on */
int opt_ind = 1; /*token pointer */
const char *opt_arg; /*flag argument (or value) */
+static int h5tools_d_status = 0;
+static const char *h5tools_progname = "h5tools";
/* local functions */
static void init_table(table_t **tbl);
@@ -758,3 +760,31 @@ out:
return Ret;
}
+
+/*-------------------------------------------------------------------------
+ * Audience: Public
+ * Chapter: H5Tools Library
+ * Purpose: Initialize the name and operation status of the H5 Tools library
+ * Description:
+ * These are utility functions to set/get the program name and operation status.
+ *-------------------------------------------------------------------------
+ */
+void h5tools_setprogname(const char *Progname)
+{
+ h5tools_progname = Progname;
+}
+
+void h5tools_setstatus(int D_status)
+{
+ h5tools_d_status = D_status;
+}
+
+const char*h5tools_getprogname()
+{
+ return h5tools_progname;
+}
+
+int h5tools_getstatus()
+{
+ return h5tools_d_status;
+}