~ctwm/ctwm/trunk

1
2
3
4
5
6
7
8
9
10
11
/*
 * 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 */