/* This is the main function to the interpreter */ #include #include #include #include "y.tab.h" #include "data.h" main() { int token; FILE *fp; char *val; char name[50]; http_head(); cgi2env(); val = getenv("WWW_tao_name"); if (val == NULL) { printf("Lack of tao name.\n"); exit(0); } interpreter(val); }