summaryrefslogtreecommitdiff
path: root/src/xkbmisc.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-04-22 12:52:26 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-04-22 12:52:26 -0700
commitb4c6069ecc1a6b03051e06aecba04e828fb0d945 (patch)
tree5bd853a4fe507c27b9846bb4de3e79e904c8c9ee /src/xkbmisc.c
parent948cbfb38a76df395e7d9458c472901bcfefb969 (diff)
Assume target platforms have strcasecmp now
It has been required since Unix98/SUSv2 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxkbfile/-/merge_requests/18>
Diffstat (limited to 'src/xkbmisc.c')
-rw-r--r--src/xkbmisc.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/xkbmisc.c b/src/xkbmisc.c
index b025048..6d80d6a 100644
--- a/src/xkbmisc.c
+++ b/src/xkbmisc.c
@@ -683,19 +683,3 @@ XkbNameMatchesPattern(char *name, char *ptrn)
/* if we get here, the pattern is exhausted (-:just like me:-) */
return (name[0] == '\0');
}
-
-#ifndef HAVE_STRCASECMP
-_X_HIDDEN int
-_XkbStrCaseCmp(char *str1, char *str2)
-{
- const u_char *us1 = (const u_char *) str1, *us2 = (const u_char *) str2;
-
- while (tolower(*us1) == tolower(*us2)) {
- if (*us1++ == '\0')
- return (0);
- us2++;
- }
-
- return (tolower(*us1) - tolower(*us2));
-}
-#endif