#include <stdio.h>
#include <stdlib.h>


struct tokenInfo
{
  int  value;
  int lineNumber;
  int type;
};
typedef struct tokenInfo tokenInfo;

/*** We create our own stack and functions for it in stack.h/c ***/
#include "stack.c"

