Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Propagate file renaming to windows
[simgrid.git] / tools / tesh2 / include / writer.h
1 #ifndef __WRITER_H
2 #define __WRITER_H
3
4 #include <com.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10
11 writer_t
12 writer_new(command_t command);
13
14 void
15 writer_free(writer_t* writer);
16
17 void
18 writer_write(writer_t writer);
19
20 void
21 writer_wait(writer_t writer);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif /* !__WRITER_H */