2024-01-04 19:36:30 +01:00
|
|
|
#ifndef EVAL_H
|
|
|
|
#define EVAL_H
|
|
|
|
|
|
|
|
#include "lexer.h"
|
|
|
|
|
|
|
|
typedef struct PageState {
|
|
|
|
int nbLink;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int beginLine;
|
2024-01-04 19:58:12 +01:00
|
|
|
int inList;
|
2024-01-04 19:36:30 +01:00
|
|
|
} PageState;
|
|
|
|
|
|
|
|
void evaluate(Token* token);
|
|
|
|
|
|
|
|
#endif // EVAL_H
|