1/* 2 * An implementation of replacing substrings in a string. 3 * 4 * See repl_str.c for details 5 */ 6#ifndef _REPL_STR_H 7#define _REPL_STR_H 8 9char *replace_substr(const char *, const char *, const char *); 10 11#endif /* _REPL_STR_H */ 12
1/* 2 * An implementation of replacing substrings in a string. 3 * 4 * See repl_str.c for details 5 */ 6#ifndef _REPL_STR_H 7#define _REPL_STR_H 8 9char *replace_substr(const char *, const char *, const char *); 10 11#endif /* _REPL_STR_H */ 12