]> git.donarmstrong.com Git - lilypond.git/blob - flower/std-string.cc
* flower/include/std-string.hh: String/std::string compatibility:
[lilypond.git] / flower / std-string.cc
1 /*
2   std-tring.cc -- implement external interface for Std_String
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2006  Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include "std-string.hh"
10
11 #if STD_STRING
12
13 namespace std {
14   Std_string
15   to_std_string (char c, int n)
16   {
17     /* FIXME, remove this function and use std::string interface for
18        String?  This interface is a bit clumsy, almost alway you want
19        n=1.  */
20     return Std_string (n, c);
21   }
22
23 #else /* !STD_STRING */
24
25 #endif /* STD_STRING */
26
27 Std_string &
28 replace_all (Std_string &str, Std_string find, Std_string replace)
29 {
30   ssize len = find.length ();
31   for (ssize i = str.find (find); i != NPOS; i = str.find (find, i + len))
32     str = str.replace (i, len, replace);
33   return str;
34 }
35
36 #if STD_STRING
37 }
38 #endif