Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Propagate file renaming to windows
[simgrid.git] / tools / tesh2 / include / str_replace.h
1 #ifndef __STR_REPLACE_H
2 #define __STR_REPLACE_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 int
8 str_replace(char** str, const char *what, const char *with);
9
10 int
11 str_replace_all(char** str, const char* what, const char* with);
12
13 #ifdef __cplusplus
14 }
15 #endif
16
17 #endif /* !__STR_REPLACE_H */