summaryrefslogtreecommitdiff
path: root/xkb/xkbfmisc.c
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2006-03-25 23:09:50 +0000
committerDaniel Stone <daniel@fooishbar.org>2006-03-25 23:09:50 +0000
commitd7b9e2b0e9d6889ea6b05e63892e612f4e5f19f5 (patch)
tree080fe7bfb71b281ef9e9f161397be3aab923965c /xkb/xkbfmisc.c
parentb3570dd94aa72f94e537a17680150e91e7712f5a (diff)
Bug #3819: Remove open-coding of strcasecmp.
Diffstat (limited to 'xkb/xkbfmisc.c')
-rw-r--r--xkb/xkbfmisc.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/xkb/xkbfmisc.c b/xkb/xkbfmisc.c
index cca31f778..01f6174aa 100644
--- a/xkb/xkbfmisc.c
+++ b/xkb/xkbfmisc.c
@@ -150,34 +150,6 @@ unsigned set,rtrn;
/***===================================================================***/
-int
-_XkbStrCaseCmp(char *str1,char *str2)
-{
- char buf1[512],buf2[512];
- char c, *s;
- register int n;
-
- for (n=0, s = buf1; (c = *str1++); n++) {
- if (isupper(c))
- c = tolower(c);
- if (n>510)
- break;
- *s++ = c;
- }
- *s = '\0';
- for (n=0, s = buf2; (c = *str2++); n++) {
- if (isupper(c))
- c = tolower(c);
- if (n>510)
- break;
- *s++ = c;
- }
- *s = '\0';
- return (strcmp(buf1, buf2));
-}
-
-/***===================================================================***/
-
Bool
XkbLookupGroupAndLevel( XkbDescPtr xkb,
int key,