Commit 8d9347ed authored by Max Kellermann's avatar Max Kellermann

Util/WStringCompare: use struct WStringView

parent eff821c1
...@@ -18,17 +18,6 @@ ...@@ -18,17 +18,6 @@
*/ */
#include "WStringCompare.hxx" #include "WStringCompare.hxx"
#include "WStringAPI.hxx"
#include <assert.h>
#include <string.h>
bool
StringStartsWith(const wchar_t *haystack, const wchar_t *needle) noexcept
{
const size_t length = StringLength(needle);
return StringIsEqual(haystack, needle, length);
}
bool bool
StringEndsWith(const wchar_t *haystack, const wchar_t *needle) noexcept StringEndsWith(const wchar_t *haystack, const wchar_t *needle) noexcept
...@@ -41,21 +30,6 @@ StringEndsWith(const wchar_t *haystack, const wchar_t *needle) noexcept ...@@ -41,21 +30,6 @@ StringEndsWith(const wchar_t *haystack, const wchar_t *needle) noexcept
} }
const wchar_t * const wchar_t *
StringAfterPrefix(const wchar_t *string, const wchar_t *prefix) noexcept
{
#if !CLANG_CHECK_VERSION(3,6)
/* disabled on clang due to -Wtautological-pointer-compare */
assert(string != nullptr);
assert(prefix != nullptr);
#endif
size_t prefix_length = StringLength(prefix);
return StringIsEqual(string, prefix, prefix_length)
? string + prefix_length
: nullptr;
}
const wchar_t *
FindStringSuffix(const wchar_t *p, const wchar_t *suffix) noexcept FindStringSuffix(const wchar_t *p, const wchar_t *suffix) noexcept
{ {
const size_t p_length = StringLength(p); const size_t p_length = StringLength(p);
......
...@@ -30,6 +30,8 @@ ...@@ -30,6 +30,8 @@
#ifndef WSTRING_COMPARE_HXX #ifndef WSTRING_COMPARE_HXX
#define WSTRING_COMPARE_HXX #define WSTRING_COMPARE_HXX
#include "WStringView.hxx"
#include "WStringAPI.hxx"
#include "Compiler.h" #include "Compiler.h"
#include <wchar.h> #include <wchar.h>
...@@ -40,9 +42,12 @@ StringIsEmpty(const wchar_t *string) noexcept ...@@ -40,9 +42,12 @@ StringIsEmpty(const wchar_t *string) noexcept
return *string == 0; return *string == 0;
} }
gcc_pure gcc_pure gcc_nonnull_all
bool static inline bool
StringStartsWith(const wchar_t *haystack, const wchar_t *needle) noexcept; StringStartsWith(const wchar_t *haystack, WStringView needle) noexcept
{
return StringIsEqual(haystack, needle.data, needle.size);
}
gcc_pure gcc_pure
bool bool
...@@ -54,8 +59,13 @@ StringEndsWith(const wchar_t *haystack, const wchar_t *needle) noexcept; ...@@ -54,8 +59,13 @@ StringEndsWith(const wchar_t *haystack, const wchar_t *needle) noexcept;
* nullptr. * nullptr.
*/ */
gcc_pure gcc_nonnull_all gcc_pure gcc_nonnull_all
const wchar_t * static inline const wchar_t *
StringAfterPrefix(const wchar_t *string, const wchar_t *prefix) noexcept; StringAfterPrefix(const wchar_t *haystack, WStringView needle) noexcept
{
return StringStartsWith(haystack, needle)
? haystack + needle.size
: nullptr;
}
/** /**
* Check if the given string ends with the specified suffix. If yes, * Check if the given string ends with the specified suffix. If yes,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment