summaryrefslogtreecommitdiff
path: root/src/string/wcsncasecmp_l.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/wcsncasecmp_l.c')
-rw-r--r--src/string/wcsncasecmp_l.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/string/wcsncasecmp_l.c b/src/string/wcsncasecmp_l.c
new file mode 100644
index 00000000..63872481
--- /dev/null
+++ b/src/string/wcsncasecmp_l.c
@@ -0,0 +1,6 @@
+#include <wchar.h>
+
+int wcsncasecmp_l(const wchar_t *l, const wchar_t *r, size_t n, locale_t locale)
+{
+ return wcsncasecmp(l, r, n);
+}