]> git.lyx.org Git - features.git/blobdiff - src/support/lstrings.h
parlist-16-a.diff
[features.git] / src / support / lstrings.h
index 71ab15cfbad7e265f2cb33015645640a14955c10..771cba3d6fb3307f29eb412a983330ce9a3b3ac3 100644 (file)
@@ -84,18 +84,12 @@ string const lowercase(string const &);
 ///
 string const uppercase(string const &);
 
-/// Does the string start with this prefix?
-bool prefixIs(string const &, char const *);
-
 /// Does the string start with this prefix?
 bool prefixIs(string const &, string const &);
 
 /// Does the string end with this char?
 bool suffixIs(string const &, char);
 
-/// Does the string end with this suffix?
-bool suffixIs(string const &, char const *);
-
 /// Does the string end with this suffix?
 bool suffixIs(string const &, string const &);
 
@@ -152,10 +146,6 @@ bool regexMatch(string const & a, string const & pattern);
 /// Substitute all \a oldchar with \a newchar
 string const subst(string const & a, char oldchar, char newchar);
 
-/// Substitutes all instances of \a oldstr with \a newstr
-string const subst(string const & a,
-            char const * oldstr, string const & newstr);
-
 /// substitutes all instances of \a oldstr with \a newstr
 string const subst(string const & a,
                   string const & oldstr, string const & newstr);