diff options
author | Max Kellermann <max@duempel.org> | 2015-11-06 09:09:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-11-06 09:20:18 +0100 |
commit | 733989a284d2f7cce37634b12afad72cc019f659 (patch) | |
tree | b7e0fca51ba23f777fc6cd2d35278cc812988265 /src/util/StringUtil.hxx | |
parent | 493f74d94dd6ebf5f185ce68d17a0110516c7337 (diff) | |
download | mpd-733989a284d2f7cce37634b12afad72cc019f659.tar.gz mpd-733989a284d2f7cce37634b12afad72cc019f659.tar.xz mpd-733989a284d2f7cce37634b12afad72cc019f659.zip |
util/StringUtil: move comparison functions to StringCompare.cxx
Diffstat (limited to 'src/util/StringUtil.hxx')
-rw-r--r-- | src/util/StringUtil.hxx | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/util/StringUtil.hxx b/src/util/StringUtil.hxx index 7e6dc4d61..9f30d363d 100644 --- a/src/util/StringUtil.hxx +++ b/src/util/StringUtil.hxx @@ -24,35 +24,6 @@ #include <stddef.h> -#ifdef _UNICODE -#include "WStringUtil.hxx" -#endif - -gcc_pure -bool -StringStartsWith(const char *haystack, const char *needle); - -gcc_pure -bool -StringEndsWith(const char *haystack, const char *needle); - -/** - * Returns the portion of the string after a prefix. If the string - * does not begin with the specified prefix, this function returns - * nullptr. - */ -gcc_pure gcc_nonnull_all -const char * -StringAfterPrefix(const char *string, const char *prefix); - -/** - * Check if the given string ends with the specified suffix. If yes, - * returns the position of the suffix, and nullptr otherwise. - */ -gcc_pure -const char * -FindStringSuffix(const char *p, const char *suffix); - /** * Copy a string. If the buffer is too small, then the string is * truncated. This is a safer version of strncpy(). |