aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl/src/string/strncasecmp.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/strncasecmp.c
parent51d39aaa3dda0a7f433fa38c365f86011b5fe84c (diff)
Add optimized versions of musl libc string and memory comparison functions.
Diffstat (limited to 'system/lib/libc/musl/src/string/strncasecmp.c')
-rw-r--r--system/lib/libc/musl/src/string/strncasecmp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/strncasecmp.c b/system/lib/libc/musl/src/string/strncasecmp.c
new file mode 100644
index 00000000..24659721
--- /dev/null
+++ b/system/lib/libc/musl/src/string/strncasecmp.c
@@ -0,0 +1,10 @@
+#include <strings.h>
+#include <ctype.h>
+
+int strncasecmp(const char *_l, const char *_r, size_t n)
+{
+ const unsigned char *l=(void *)_l, *r=(void *)_r;
+ if (!n--) return 0;
+ for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--);
+ return tolower(*l) - tolower(*r);
+}