File: evalx.h

package info (click to toggle)
ht 2.0.20-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,324 kB
  • sloc: cpp: 97,563; ansic: 17,183; sh: 3,811; lex: 226; makefile: 213; yacc: 127
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__ */