From: "Jan Beulich" <JBeulich@novell.com>
To: <linux-kernel@vger.kernel.org>
Subject: [PATCH] provide stricmp
Date: Tue, 08 Nov 2005 13:58:54 +0100 [thread overview]
Message-ID: <4370AF1E.76F0.0078.0@novell.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 171 bytes --]
While strnicmp existed in the set of string support routines, stricmp
didn't, which this patch adjusts.
From: Jan Beulich <jbeulich@novell.com>
(actual patch attached)
[-- Attachment #2: linux-2.6.14-stricmp.patch --]
[-- Type: application/octet-stream, Size: 1392 bytes --]
While strnicmp existed in the set of string support routines, stricmp
didn't, which this patch adjusts.
From: Jan Beulich <jbeulich@novell.com>
--- 2.6.14/include/linux/string.h 2005-10-28 02:02:08.000000000 +0200
+++ 2.6.14-stricmp/include/linux/string.h 2005-11-04 16:19:34.000000000 +0100
@@ -47,6 +47,9 @@ extern int strcmp(const char *,const cha
#ifndef __HAVE_ARCH_STRNCMP
extern int strncmp(const char *,const char *,__kernel_size_t);
#endif
+#ifndef __HAVE_ARCH_STRICMP
+extern int stricmp(const char *, const char *);
+#endif
#ifndef __HAVE_ARCH_STRNICMP
extern int strnicmp(const char *, const char *, __kernel_size_t);
#endif
--- 2.6.14/lib/string.c 2005-10-28 02:02:08.000000000 +0200
+++ 2.6.14-stricmp/lib/string.c 2005-11-04 16:19:35.000000000 +0100
@@ -24,6 +24,31 @@
#include <linux/ctype.h>
#include <linux/module.h>
+#ifndef __HAVE_ARCH_STRICMP
+/**
+ * stricmp - Compare two strings case-insensitively
+ * @s1: One string
+ * @s2: Another string
+ */
+int stricmp(const char *s1, const char *s2)
+{
+ unsigned char c1, c2;
+
+ for (;;) {
+ c1 = *s1++;
+ c2 = *s2++;
+ if (!c1 || !c2)
+ break;
+ if (c1 == c2)
+ continue;
+ if ((c1 = tolower(c1)) != (c2 = tolower(c2)))
+ break;
+ }
+ return (int)c1 - (int)c2;
+}
+#endif
+EXPORT_SYMBOL(stricmp);
+
#ifndef __HAVE_ARCH_STRNICMP
/**
* strnicmp - Case insensitive, length-limited string comparison
next reply other threads:[~2005-11-08 12:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-08 12:58 Jan Beulich [this message]
2005-11-08 13:41 ` Christoph Hellwig
2005-11-08 14:20 ` Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4370AF1E.76F0.0078.0@novell.com \
--to=jbeulich@novell.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome