evalue.c: reorder_terms: fix typo
[barvinok.git] / evalue_convert.h
blob8101c8bfe0783ea4cb0b8a7cb8dd30ace3c696a9
1 #ifndef EVALUE_CONVERT
2 #define EVALUE_CONVERT
4 #include <barvinok/evalue.h>
5 #include "argp.h"
7 #if defined(__cplusplus)
8 extern "C" {
9 #endif
11 struct convert_options {
12 int range;
13 int convert;
14 int combine;
15 int floor;
16 int list;
17 int latex;
20 int evalue_convert(evalue *EP, struct convert_options *options,
21 int verbose, unsigned nparam, char **params);
23 extern struct argp convert_argp;
25 #if defined(__cplusplus)
27 #endif
29 #endif