summaryrefslogtreecommitdiffstats
path: root/conf/conf.h
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-01-15 15:41:51 +0100
committerPavel Machek <pavel@ucw.cz>1999-01-15 15:41:51 +0100
commit72380a3447d2c54730a4a32495e5dd964c34f57e (patch)
tree3f2ff4ddddf46a90428c8a24d02affbee57456a9 /conf/conf.h
parent41183888ee8addbd7887936e3b41974f5824d8ae (diff)
downloadbird-72380a3447d2c54730a4a32495e5dd964c34f57e.tar
bird-72380a3447d2c54730a4a32495e5dd964c34f57e.zip
Filters added. They are unable to do anything interesting for now
(with exception of printing integers to screen), but they exist.
Diffstat (limited to 'conf/conf.h')
-rw-r--r--conf/conf.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/conf.h b/conf/conf.h
index 1e80628..19ed34e 100644
--- a/conf/conf.h
+++ b/conf/conf.h
@@ -36,6 +36,10 @@ struct symbol {
#define SYM_VOID 0
#define SYM_PROTO 1
#define SYM_NUMBER 2
+#define SYM_STAT 3 /* statement */
+#define SYM_VARIABLE_INT 4
+#define SYM_FUNCTION 5
+#define SYM_FILTER 6
void cf_lex_init_tables(void);
int cf_lex(void);