#ifndef VSLC_H #define VSLC_H #include #include #include #include #include #include #include // Definition of the tree node type, and functions for handling the parse tree #include "tree.h" // The main driver function of the parser generated by bison int yyparse(); // A "hidden" cleanup function in flex int yylex_destroy(); #endif // VSLC_H