aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl/src/string/strcasecmp.c
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2014-02-06 17:07:04 -0500
committerJukka Jylänki <jujjyl@gmail.com>2014-02-06 17:07:04 -0500
commita2f95d50985660324812286771dbfdcf7da638a4 (patch)
treea7270fa2095c5a794f4dc4d07a549c0a25a30e77 /system/lib/libc/musl/src/string/strcasecmp.c
parent51d39aaa3dda0a7f433fa38c365f86011b5fe84c (diff)
Add optimized versions of musl libc string and memory comparison functions.
Diffstat (limited to 'system/lib/libc/musl/src/string/strcasecmp.c')
-rw-r--r--system/lib/libc/musl/src/string/strcasecmp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/strcasecmp.c b/system/lib/libc/musl/src/string/strcasecmp.c
new file mode 100644
index 00000000..02fd5f8c
--- /dev/null
+++ b/system/lib/libc/musl/src/string/strcasecmp.c
@@ -0,0 +1,9 @@
+#include <strings.h>
+#include <ctype.h>
+
+int strcasecmp(const char *_l, const char *_r)
+{
+ const unsigned char *l=(void *)_l, *r=(void *)_r;
+ for (; *l && *r && (*l == *r || tolower(*l) == tolower(*r)); l++, r++);
+ return tolower(*l) - tolower(*r);
+}