You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
267 B
15 lines
267 B
#ifndef _EVAL_EXPR_H_
|
|
#define _EVAL_EXPR_H_
|
|
|
|
#include <tepal_pars.h>
|
|
#include <expValue.h>
|
|
|
|
#define PLUS '+'
|
|
#define MINUS '-'
|
|
#define TIMES '*'
|
|
#define OVER '/'
|
|
#define MODULO '%'
|
|
|
|
s_expVal * evalExpr (int, s_expVal *, s_expVal *);
|
|
|
|
#endif /* _EVAL_EXPR_H_ */
|