File: repl_str.h

package info (click to toggle)
ctwm 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,580 kB
  • sloc: ansic: 34,729; yacc: 985; sh: 466; perl: 415; lex: 133; makefile: 102
file content (11 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (2)
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 */