File: evalx.h

package info (click to toggle)
ht 2.1.0%2Brepack1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,712 kB
  • ctags: 15,753
  • sloc: cpp: 88,932; ansic: 12,693; sh: 4,081; lex: 226; makefile: 184; yacc: 128
file content (12 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __EVALX_H__
#define __EVALX_H__

#include "evaltype.h"
#include "eval.h"

#ifdef __cplusplus
extern "C"
#endif
int eval(eval_scalar *r, const char *str, eval_func_handler func_handler, eval_symbol_handler symbol_handler, void *context);

#endif /* __EVALX_H__ */