summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/string/wcsnlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/string/wcsnlen.c')
-rw-r--r--libc-top-half/musl/src/string/wcsnlen.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/string/wcsnlen.c b/libc-top-half/musl/src/string/wcsnlen.c
new file mode 100644
index 0000000..a776337
--- /dev/null
+++ b/libc-top-half/musl/src/string/wcsnlen.c
@@ -0,0 +1,8 @@
+#include <wchar.h>
+
+size_t wcsnlen(const wchar_t *s, size_t n)
+{
+ const wchar_t *z = wmemchr(s, 0, n);
+ if (z) n = z-s;
+ return n;
+}