aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common
diff options
context:
space:
mode:
authorJulien Grall <julien.grall@linaro.org>2013-08-28 15:47:20 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-09-10 11:44:01 +0100
commit6bc02f74af03e65b5bb62450c1be43ea0f5d2989 (patch)
treed98af89cefa049b99ff4af2c0e276a4c976de16a /xen/common
parente6fb0c4b80b129ba2bf946de2db170ec99c7b114 (diff)
downloadxen-6bc02f74af03e65b5bb62450c1be43ea0f5d2989.tar.gz
xen-6bc02f74af03e65b5bb62450c1be43ea0f5d2989.tar.bz2
xen-6bc02f74af03e65b5bb62450c1be43ea0f5d2989.zip
xen: Add new string function
Add strcasecmp. The code is copied from Linux. Signed-off-by: Julien Grall <julien.grall@linaro.org> Acked-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'xen/common')
-rw-r--r--xen/common/string.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/xen/common/string.c b/xen/common/string.c
index db9d9d5199..9a5a4ba5e8 100644
--- a/xen/common/string.c
+++ b/xen/common/string.c
@@ -41,6 +41,21 @@ int strnicmp(const char *s1, const char *s2, size_t len)
}
#endif
+#ifndef __HAVE_ARCH_STRCASECMP
+int strcasecmp(const char *s1, const char *s2)
+{
+ int c1, c2;
+
+ do
+ {
+ c1 = tolower(*s1++);
+ c2 = tolower(*s2++);
+ } while ( c1 == c2 && c1 != 0 );
+
+ return c1 - c2;
+}
+#endif
+
#ifndef __HAVE_ARCH_STRLCPY
/**
* strlcpy - Copy a %NUL terminated string into a sized buffer