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 / variable.h
1 #ifndef __VARIABLE_H
2 #define __VARIABLE_H
3
4 #include <com.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 variable_t
11 variable_new(const char* name, const char* val);
12
13 int
14 variable_free(variable_t* variableptr);
15
16 int
17 variable_is_used(variable_t variable);
18
19 int
20 variable_set_used(variable_t variable);
21
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27
28 #endif /*!__VARIABLE_H */
29