aboutsummaryrefslogtreecommitdiff
path: root/src/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.h')
-rw-r--r--src/parse.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/parse.h b/src/parse.h
new file mode 100644
index 0000000..4e60f13
--- /dev/null
+++ b/src/parse.h
@@ -0,0 +1,19 @@
+/**
+ * @file parse.h
+ * @author Joe Wingbermuehle
+ * @date 2004-2006
+ *
+ * @brief Header file for the JWM configuration parser.
+ *
+ */
+
+#ifndef PARSE_H
+#define PARSE_H
+
+/** Parse a configuration file.
+ * @param fileName The file to parse.
+ */
+void ParseConfig(const char *fileName);
+
+#endif
+