16 lines
188 B
C
16 lines
188 B
C
|
#ifndef EVAL_H
|
||
|
#define EVAL_H
|
||
|
|
||
|
#include "lexer.h"
|
||
|
|
||
|
typedef struct PageState {
|
||
|
int nbLink;
|
||
|
int x;
|
||
|
int y;
|
||
|
int beginLine;
|
||
|
} PageState;
|
||
|
|
||
|
void evaluate(Token* token);
|
||
|
|
||
|
#endif // EVAL_H
|