summaryrefslogtreecommitdiffstats
path: root/include/expression.h
blob: d350f78ef88d7db0054d9934548a56098c9de999 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ZABBIX_EXPRESSION_H
#define ZABBIX_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