Sha256: e4fe0cf7fc36c2624e3e45e8555928c660eb59ca10de3f8de6d7445666608eef
Contents?: true
Size: 608 Bytes
Versions: 3
Compression:
Stored size: 608 Bytes
Contents
#include <string.h> #include "exprtype.h" struct expr_parser; /* Function types */ typedef double (*func_t_dd) (double); typedef double (*func_t_ddd) (double,double); typedef struct exprval (*func_t_ee) (struct expr_parser* exprobj, struct exprval); /* memory is allocated at compile time. it is also thread safe */ struct symrec_const { char *name; /* name of symbol */ int type; /* type of symbol: either VAR or FNCT */ double var; /* value of a VAR */ void* fnctptr; /* value of a FNCT */ }; typedef struct symrec_const symrec_const; /* Local Variables: mode: c End: */
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
html-template-pro-0.0.3 | ext/html/template/calc.h |
html-template-pro-0.0.2 | ext/html/template/internal/calc.h |
html-template-pro-0.0.1 | ext/html/template/internal/calc.h |