diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-01-15 14:41:51 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-01-15 14:41:51 +0000 |
commit | 72380a3447d2c54730a4a32495e5dd964c34f57e (patch) | |
tree | 3f2ff4ddddf46a90428c8a24d02affbee57456a9 /conf/conf.h | |
parent | 41183888ee8addbd7887936e3b41974f5824d8ae (diff) |
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.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/conf.h b/conf/conf.h index 1e80628e..19ed34e9 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); |