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