aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl/src/string/wcsncasecmp.c
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-04-23 18:50:47 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-04-23 18:50:47 -0700
commitf6fa219f1275b8a98c768d1f8593613ed85d5cfe (patch)
tree89b4848d4bd5a1fbdf9100f346c1583c657b341d /system/lib/libc/musl/src/string/wcsncasecmp.c
parent430dcb4c1533a7c2e9486a2bcbb4e0bda3025c0c (diff)
parent029c076151fb9cb47c54af53c52870ef0b620c5c (diff)
Merge pull request #1063 from waywardmonkeys/musl-libc1.3.7
Add wchar and multibyte libc functions
Diffstat (limited to 'system/lib/libc/musl/src/string/wcsncasecmp.c')
-rw-r--r--system/lib/libc/musl/src/string/wcsncasecmp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/wcsncasecmp.c b/system/lib/libc/musl/src/string/wcsncasecmp.c
new file mode 100644
index 00000000..8fefe799
--- /dev/null
+++ b/system/lib/libc/musl/src/string/wcsncasecmp.c
@@ -0,0 +1,9 @@
+#include <wchar.h>
+#include <wctype.h>
+
+int wcsncasecmp(const wchar_t *l, const wchar_t *r, size_t n)
+{
+ if (!n--) return 0;
+ for (; *l && *r && n && (*l == *r || towlower(*l) == towlower(*r)); l++, r++, n--);
+ return towlower(*l) - towlower(*r);
+}