blob: 1ebde5f13ca49a958b19b4488b1b118038e00a86 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef MON_EXPRESSION_H
#define MON_EXPRESSION_H
int cmp_double(double a,double b);
int find_char(char *str,char c);
int substitute_functions(char *exp);
int substitute_macros(char *exp);
int evaluate_expression (int *result,char *expression);
#endif
|