1 2 3 4 5 6 7 8 | #ifndef ULMAS1_PARSEEXPR_H
#define ULMAS1_PARSEEXPR_H
#include "expr.h"
struct Expr *parseExpression();
#endif // ULMAS1_PARSEEXPR_H
|
1 2 3 4 5 6 7 8 | #ifndef ULMAS1_PARSEEXPR_H
#define ULMAS1_PARSEEXPR_H
#include "expr.h"
struct Expr *parseExpression();
#endif // ULMAS1_PARSEEXPR_H
|