Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fixed bugs in SMPI_MPI_Comm_split and added back SMPI_MPI_Wait
[simgrid.git] / tools / tesh2 / include / reader.h
1 #ifndef __READER_H
2 #define __READER_H
3
4 #include <com.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10
11
12 reader_t
13 reader_new(command_t command);
14
15 void
16 reader_free(reader_t* reader);
17
18 void
19 reader_read(reader_t reader);
20
21 void
22 reader_wait(reader_t reader);
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28 #endif /* !__READER_H */