aboutsummaryrefslogtreecommitdiffstats
path: root/src/string_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_utils.h')
-rw-r--r--src/string_utils.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/string_utils.h b/src/string_utils.h
index 3337f012..bd5dd9dd 100644
--- a/src/string_utils.h
+++ b/src/string_utils.h
@@ -107,18 +107,6 @@ serd_to_lower(const char c)
return (char)((c >= 'A' && c <= 'Z') ? c + 32 : c);
}
-static inline int
-serd_strncasecmp(const char* s1, const char* s2, size_t n)
-{
- for (; n > 0 && *s2; s1++, s2++, --n) {
- if (serd_to_lower(*s1) != serd_to_lower(*s2)) {
- return (*s1 < *s2) ? -1 : +1;
- }
- }
-
- return 0;
-}
-
static inline uint8_t
utf8_num_bytes(const uint8_t leading)
{