Files
TDT4205/ps2/src/vslc.h
2026-02-14 10:45:32 +01:00

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