/*
 * This is not intended to be used in the final program. It's just there so you
 * can see what this component does in isolation.
 */

#include <sys/types.h>
#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include "hash_table.h"
#include "token.h"

#include "parser.h"


#define MYNAME 0


char *myname;


int main (int argc, char **argv) {
  myname = argv[MYNAME];

  parser(stdin, stdout);

  exit(EXIT_SUCCESS);
}

