21 lines
424 B
C
21 lines
424 B
C
#ifndef VSLC_H
|
|
#define VSLC_H
|
|
#include <assert.h>
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
// 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
|