aboutsummaryrefslogtreecommitdiff
path: root/src/StringUtil.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-08-14 22:43:30 (GMT)
committerfluxgen <fluxgen>2002-08-14 22:43:30 (GMT)
commit781fb842420ffda1bb639918ec771dc93c187a21 (patch)
tree4a90bb706653d451995c7b9b20abe67c9b9d56ff /src/StringUtil.hh
parent0b25dc379cdcea545c93fcc6108c500f805c1f10 (diff)
downloadfluxbox-781fb842420ffda1bb639918ec771dc93c187a21.zip
fluxbox-781fb842420ffda1bb639918ec771dc93c187a21.tar.bz2
changed to std string in expandFilename
Diffstat (limited to 'src/StringUtil.hh')
-rw-r--r--src/StringUtil.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StringUtil.hh b/src/StringUtil.hh
index cd3e0c0..f2f4944 100644
--- a/src/StringUtil.hh
+++ b/src/StringUtil.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22//$Id: StringUtil.hh,v 1.8 2002/04/12 15:06:07 fluxgen Exp $ 22//$Id: StringUtil.hh,v 1.9 2002/08/14 22:43:30 fluxgen Exp $
23 23
24#ifndef STRINGUTIL_HH 24#ifndef STRINGUTIL_HH
25#define STRINGUTIL_HH 25#define STRINGUTIL_HH
@@ -34,7 +34,7 @@ char *strdup(const char *);
34//Similar to `strstr' but this function ignores the case of both strings 34//Similar to `strstr' but this function ignores the case of both strings
35const char *strcasestr(const char *str, const char *ptn); 35const char *strcasestr(const char *str, const char *ptn);
36 36
37char *expandFilename(const char *filename); 37std::string expandFilename(const std::string &filename);
38int getStringBetween(std::string& out, const char *instr, const char first, const char last, 38int getStringBetween(std::string& out, const char *instr, const char first, const char last,
39 const char *ok_chars=" \t\n"); 39 const char *ok_chars=" \t\n");
40 40