aboutsummaryrefslogtreecommitdiffstats
path: root/src/utilfuns/utilconf.cpp
diff options
context:
space:
mode:
authordanglassey <danglassey>2002-08-14 09:57:17 +0000
committerdanglassey <danglassey>2002-08-14 09:57:17 +0000
commitc9458897ebbb739d8db83c80e06512d8a612f743 (patch)
treef8c5381045887e34388cc6b26cfccc254bf766dc /src/utilfuns/utilconf.cpp
downloadsword-sf-cvs-c9458897ebbb739d8db83c80e06512d8a612f743.tar.gz
*** empty log message ***
Diffstat (limited to 'src/utilfuns/utilconf.cpp')
-rw-r--r--src/utilfuns/utilconf.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/utilfuns/utilconf.cpp b/src/utilfuns/utilconf.cpp
new file mode 100644
index 0000000..5a32ca0
--- /dev/null
+++ b/src/utilfuns/utilconf.cpp
@@ -0,0 +1,19 @@
+#include <string.h>
+#include <utilstr.h>
+
+
+/******************************************************************************
+ * getconfent - Get the value of an entry in a configuration file
+ *
+ * ENT: filename - File name in which to look for entry
+ * entryname - Entry of which to obtain value
+ * buf - Buffer to store entry value
+ * len - Maximum length to write into buffer
+ *
+ * RET: error status
+ */
+
+char getconfent(char *filename, char *entryname, char *buf, int len)
+{
+ return 0;
+}