1 /****************************************************************************/
2 /*                                                                          */
3 /*  Module:         jamexp.h                                                */
4 /*                                                                          */
5 /*                  Copyright (C) Altera Corporation 1997                   */
6 /*                                                                          */
7 /*  Description:    Prototypes for expression evaluation functions          */
8 /*                                                                          */
9 /****************************************************************************/
10 
11 #ifndef INC_JAMEXP_H
12 #define INC_JAMEXP_H
13 
14 #include <stdint.h>
15 
16 JAM_RETURN_TYPE urj_jam_evaluate_expression
17     (char *expression, int32_t *result, JAME_EXPRESSION_TYPE *result_type);
18 
19 #endif /* INC_JAMEXP_H */
20