summaryrefslogtreecommitdiffstats
path: root/filter/filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'filter/filter.h')
-rw-r--r--filter/filter.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/filter/filter.h b/filter/filter.h
new file mode 100644
index 0000000..499be0a
--- /dev/null
+++ b/filter/filter.h
@@ -0,0 +1,21 @@
+/*
+ * BIRD Internet Routing Daemon -- Configuration File Handling
+ *
+ * (c) 1998 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#ifndef _BIRD_FILT_H_
+#define _BIRD_FILT_H_
+
+#include "lib/resource.h"
+
+/* Lexer */
+
+struct f_instruction {
+ int code;
+ void *arg1, *arg2;
+};
+
+#endif