Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tesh version 2
[simgrid.git] / tools / tesh2 / include / fstream.h
1 #ifndef __FSTREAM_H
2 #define __FSTREAM_H
3
4 #include <com.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 fstream_t
11 fstream_new(const char* directory, const char* name);
12
13 int
14 fstream_open(fstream_t fstream);
15
16 int
17 fstream_close(fstream_t fstream);
18
19 int
20 fstream_free(void** fstreamptr);
21
22 void
23 fstream_parse(fstream_t fstream, unit_t unit);
24
25 #ifdef __cplusplus
26 }
27 #endif
28
29
30 #endif /*! __FSTREAM_H */