From c880099deb41c09ea7844daa27a42dac4142c0cd Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 6 Nov 2015 09:37:07 +0100 Subject: util/StringCompare: add StringIsEmpty() --- src/util/StringCompare.hxx | 6 ++++++ src/util/WStringCompare.hxx | 6 ++++++ 2 files changed, 12 insertions(+) (limited to 'src/util') diff --git a/src/util/StringCompare.hxx b/src/util/StringCompare.hxx index 2c23b312f..a29892bc9 100644 --- a/src/util/StringCompare.hxx +++ b/src/util/StringCompare.hxx @@ -36,6 +36,12 @@ #include "WStringCompare.hxx" #endif +static inline bool +StringIsEmpty(const char *string) +{ + return *string == 0; +} + gcc_pure bool StringStartsWith(const char *haystack, const char *needle); diff --git a/src/util/WStringCompare.hxx b/src/util/WStringCompare.hxx index 3547076ca..bddd62120 100644 --- a/src/util/WStringCompare.hxx +++ b/src/util/WStringCompare.hxx @@ -34,6 +34,12 @@ #include +static inline bool +StringIsEmpty(const wchar_t *string) +{ + return *string == 0; +} + gcc_pure bool StringStartsWith(const wchar_t *haystack, const wchar_t *needle); -- cgit v1.2.3