summaryrefslogtreecommitdiffstats
path: root/grammar/parserif.h
diff options
context:
space:
mode:
Diffstat (limited to 'grammar/parserif.h')
-rw-r--r--grammar/parserif.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/grammar/parserif.h b/grammar/parserif.h
index b6986dd8..c88114c9 100644
--- a/grammar/parserif.h
+++ b/grammar/parserif.h
@@ -5,4 +5,14 @@ int yyparse();
int yydebug;
void dbgprintf(char *fmt, ...) __attribute__((format(printf, 1, 2)));
void parser_errmsg(char *fmt, ...) __attribute__((format(printf, 1, 2)));
+
+/* entry points to be called after the parser has processed the
+ * element in question. Actual processing must than be done inside
+ * these functions.
+ */
+void cnfDoObj(struct cnfobj *o);
+void cnfDoRule(struct cnfrule *rule);
+void cnfDoCfsysline(char *ln);
+void cnfDoBSDTag(char *ln);
+void cnfDoBSDHost(char *ln);
#endif