mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 10:31:13 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6242 d0543943-73ff-0310-b7d9-9358b9ac24b2
30 lines
611 B
C
30 lines
611 B
C
/*
|
|
File: exprconf.h
|
|
Auth: Brian Allen Vanderburg II
|
|
Date: Thursday, October 20, 2005
|
|
Desc: Configuration for ExprEval
|
|
|
|
This file is part of ExprEval.
|
|
*/
|
|
|
|
#ifndef __BAVII_EXPRCONF_H
|
|
#define __BAVII_EXPRCONF_H
|
|
|
|
/*
|
|
Error checking level
|
|
|
|
0: Don't check any errors (don't use errno). Divide by 0
|
|
is avoided and the part that divides by 0 is 0. For example
|
|
'4+1/0' is 4.
|
|
|
|
1: Check math errors.
|
|
*/
|
|
#define EXPR_ERROR_LEVEL_NONE 0
|
|
#define EXPR_ERROR_LEVEL_CHECK 1
|
|
|
|
#ifndef EXPR_ERROR_LEVEL
|
|
#define EXPR_ERROR_LEVEL EXPR_ERROR_LEVEL_CHECK
|
|
#endif
|
|
|
|
#endif /* __BAVII_EXPRCONF_H */
|