Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add the new integrated files version (use xbt data structures instead my own data...
[simgrid.git] / tools / tesh2 / include / variable.h
1 #ifndef __VARIABLE_H\r
2 #define __VARIABLE_H\r
3 \r
4 #include <com.h>\r
5 \r
6 #ifdef __cplusplus\r
7 extern "C" {\r
8 #endif\r
9 \r
10 variable_t\r
11 variable_new(const char* name, const char* val);\r
12 \r
13 int\r
14 variable_free(variable_t* variableptr);\r
15 \r
16 int\r
17 variable_is_used(variable_t variable);\r
18 \r
19 int\r
20 variable_set_used(variable_t variable);\r
21 \r
22 \r
23 #ifdef __cplusplus\r
24 }\r
25 #endif\r
26 \r
27 \r
28 #endif /*!__VARIABLE_H */\r
29 \r