aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/StringUtil.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-17 22:37:43 +0100
committerMax Kellermann <max@duempel.org>2014-02-17 22:37:43 +0100
commit579e48edbb3d897e04bcf50ef630cab597fe6d84 (patch)
treec8976480c3b149495fa23b84170921218294db82 /src/util/StringUtil.hxx
parent6a08f2281a66b3d41a02350d2ba75f453976faac (diff)
downloadmpd-579e48edbb3d897e04bcf50ef630cab597fe6d84.tar.gz
mpd-579e48edbb3d897e04bcf50ef630cab597fe6d84.tar.xz
mpd-579e48edbb3d897e04bcf50ef630cab597fe6d84.zip
util/StringUtil: add function Strip()
Replaces g_strstrip().
Diffstat (limited to 'src/util/StringUtil.hxx')
-rw-r--r--src/util/StringUtil.hxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/StringUtil.hxx b/src/util/StringUtil.hxx
index 933d82c16..a48e2abc9 100644
--- a/src/util/StringUtil.hxx
+++ b/src/util/StringUtil.hxx
@@ -40,6 +40,13 @@ strchug_fast(char *p)
return const_cast<char *>(strchug_fast((const char *)p));
}
+/**
+ * Skip whitespace at the beginning and terminate the string after the
+ * last non-whitespace character.
+ */
+char *
+Strip(char *p);
+
gcc_pure
bool
StringStartsWith(const char *haystack, const char *needle);