aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/StringUtil.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-17 23:29:08 +0100
committerMax Kellermann <max@duempel.org>2014-02-18 09:18:42 +0100
commit2b21312b367bbde7473e95093fbebbf79e693df1 (patch)
tree2878849657a8a525b8a72e7bc3f3bd57415cb82d /src/util/StringUtil.hxx
parent3a818b6d45bc6b01c0092afc3f420ced668e9967 (diff)
downloadmpd-2b21312b367bbde7473e95093fbebbf79e693df1.tar.gz
mpd-2b21312b367bbde7473e95093fbebbf79e693df1.tar.xz
mpd-2b21312b367bbde7473e95093fbebbf79e693df1.zip
util/StringUtil: add StringEndsWith()
Replaces g_str_has_suffix().
Diffstat (limited to 'src/util/StringUtil.hxx')
-rw-r--r--src/util/StringUtil.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util/StringUtil.hxx b/src/util/StringUtil.hxx
index a48e2abc9..779d5d776 100644
--- a/src/util/StringUtil.hxx
+++ b/src/util/StringUtil.hxx
@@ -51,6 +51,10 @@ gcc_pure
bool
StringStartsWith(const char *haystack, const char *needle);
+gcc_pure
+bool
+StringEndsWith(const char *haystack, const char *needle);
+
/**
* Checks whether a string array contains the specified string.
*