evalue.c: reorder_terms: fix typo
[barvinok.git] / evalue_read.h
blobe7da0c301da201338b851cdc2b224cbd6d3ab535
1 #ifndef EVALUE_READ
2 #define EVALUE_READ
4 #include <barvinok/evalue.h>
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
10 evalue *evalue_read_from_file(FILE *in, const char *var_list, char ***ppp,
11 unsigned *nvar, unsigned *nparam, unsigned MaxRays);
12 evalue *evalue_read_from_str(const char *str, const char *var_list, char ***ppp,
13 unsigned *nvar, unsigned *nparam, unsigned MaxRays);
15 #if defined(__cplusplus)
17 #endif
19 #endif