Get rid of the warning about ignoring the return value of fgets
[cloog/uuh.git] / include / cloog / input.h
blobb3d3c533c4a3da97d71122a13b5066167d5424ce
1 #ifndef CLOOG_INPUT_H
2 #define CLOOG_INPUT_H
4 #if defined(__cplusplus)
5 extern "C" {
6 #endif
8 struct osl_scop;
10 struct clooginput {
11 CloogDomain *context;
12 CloogUnionDomain *ud;
14 typedef struct clooginput CloogInput;
16 CloogInput *cloog_input_from_osl_scop(CloogState *, struct osl_scop *);
17 CloogInput *cloog_input_read(FILE *file, CloogOptions *options);
18 CloogInput *cloog_input_alloc(CloogDomain *context, CloogUnionDomain *ud);
19 void cloog_input_free(CloogInput *input);
21 void cloog_input_dump_cloog(FILE *file, CloogInput *input, CloogOptions *opt);
23 #if defined(__cplusplus)
25 #endif
27 #endif