/*
 * An implementation of replacing substrings in a string.
 *
 * See repl_str.c for details
 */
#ifndef _REPL_STR_H
#define _REPL_STR_H

char *replace_substr(const char *, const char *, const char *);

#endif /* _REPL_STR_H */
