Fix the syntactic analyzer for real.
[TP_AL_C.git] / lexer / global_vars.c
1 #include "global_vars.h"
2
3 FILE *source = NULL, *target = NULL;
4 struct token_s token[TOKEN_MAX] = {{NULL, {0}}};
5 wint_t tokenValue[50] = {0};
6 unsigned int tokenFound = 0;
7 const char* tokenTypestr[] = { "MOTCLE", "SECTION", "SSECTION", "NPARA", "MOT", "FIN" };