Used Variables instead of Options, in SConstruct
[mcc.git] / cc.h
blob3b834db43f0c081899f9f2f57f44dd622a193c58
1 #ifndef MCC_CC_H
2 #define MCC_CC_H
4 struct cc;
6 #include "scanner.h"
7 #include "stree.h"
9 struct cc {
10 struct lexer lex;
11 struct stree *stree;
12 struct stree *scope;
13 struct stree *switch_scope; // innermost switch statement
16 #endif