2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
// author: Max Kellermann <max.kellermann@gmail.com>
|
2013-10-20 23:09:51 +02:00
|
|
|
|
2015-03-04 20:05:39 +01:00
|
|
|
#ifndef ASCII_HXX
|
|
|
|
#define ASCII_HXX
|
2013-10-20 23:09:51 +02:00
|
|
|
|
|
|
|
#include "Compiler.h"
|
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2020-03-13 20:17:53 +01:00
|
|
|
#include <string_view>
|
2020-03-12 23:20:59 +01:00
|
|
|
|
2014-08-15 21:22:37 +02:00
|
|
|
#include <strings.h>
|
2013-10-20 23:09:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether two strings are equal, ignoring case for ASCII
|
|
|
|
* letters.
|
|
|
|
*/
|
2022-04-26 20:19:31 +02:00
|
|
|
[[gnu::pure]] [[gnu::nonnull]]
|
2013-10-20 23:09:51 +02:00
|
|
|
static inline bool
|
2017-05-08 14:44:49 +02:00
|
|
|
StringEqualsCaseASCII(const char *a, const char *b) noexcept
|
2013-10-20 23:09:51 +02:00
|
|
|
{
|
2014-12-26 13:40:17 +01:00
|
|
|
#if !CLANG_CHECK_VERSION(3,6)
|
|
|
|
/* disabled on clang due to -Wtautological-pointer-compare */
|
2014-12-26 13:37:38 +01:00
|
|
|
assert(a != nullptr);
|
|
|
|
assert(b != nullptr);
|
2014-12-26 13:40:17 +01:00
|
|
|
#endif
|
2013-10-20 23:09:51 +02:00
|
|
|
|
2014-12-26 13:37:38 +01:00
|
|
|
/* note: strcasecmp() depends on the locale, but for ASCII-only
|
|
|
|
strings, it's safe to use */
|
|
|
|
return strcasecmp(a, b) == 0;
|
2013-10-20 23:09:51 +02:00
|
|
|
}
|
|
|
|
|
2022-04-26 20:19:31 +02:00
|
|
|
[[gnu::pure]] [[gnu::nonnull]]
|
2013-10-21 08:42:55 +02:00
|
|
|
static inline bool
|
2017-05-08 14:44:49 +02:00
|
|
|
StringEqualsCaseASCII(const char *a, const char *b, size_t n) noexcept
|
2013-10-21 08:42:55 +02:00
|
|
|
{
|
2014-12-26 13:40:17 +01:00
|
|
|
#if !CLANG_CHECK_VERSION(3,6)
|
|
|
|
/* disabled on clang due to -Wtautological-pointer-compare */
|
2014-12-26 13:37:38 +01:00
|
|
|
assert(a != nullptr);
|
|
|
|
assert(b != nullptr);
|
2014-12-26 13:40:17 +01:00
|
|
|
#endif
|
2013-10-21 08:42:55 +02:00
|
|
|
|
2014-12-26 13:37:38 +01:00
|
|
|
/* note: strcasecmp() depends on the locale, but for ASCII-only
|
|
|
|
strings, it's safe to use */
|
|
|
|
return strncasecmp(a, b, n) == 0;
|
2013-10-21 08:42:55 +02:00
|
|
|
}
|
|
|
|
|
2022-04-26 20:19:31 +02:00
|
|
|
[[gnu::pure]] [[gnu::nonnull]]
|
2018-08-02 10:41:34 +02:00
|
|
|
static inline bool
|
2020-03-13 20:17:53 +01:00
|
|
|
StringStartsWithCaseASCII(const char *haystack,
|
|
|
|
std::string_view needle) noexcept
|
2018-08-02 10:41:34 +02:00
|
|
|
{
|
2020-03-13 20:17:53 +01:00
|
|
|
return StringEqualsCaseASCII(haystack, needle.data(), needle.length());
|
2018-08-02 10:41:34 +02:00
|
|
|
}
|
|
|
|
|
2022-04-26 20:19:31 +02:00
|
|
|
[[gnu::pure]] [[gnu::nonnull]]
|
2018-08-02 10:41:34 +02:00
|
|
|
static inline const char *
|
2020-03-13 20:17:53 +01:00
|
|
|
StringAfterPrefixCaseASCII(const char *haystack,
|
|
|
|
std::string_view needle) noexcept
|
2018-08-02 10:41:34 +02:00
|
|
|
{
|
|
|
|
return StringStartsWithCaseASCII(haystack, needle)
|
2020-03-13 20:17:53 +01:00
|
|
|
? haystack + needle.length()
|
2018-08-02 10:41:34 +02:00
|
|
|
: nullptr;
|
|
|
|
}
|
|
|
|
|
2013-10-20 23:09:51 +02:00
|
|
|
#endif
|