aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl/src/string/wcstok.c
diff options
context:
space:
mode:
Diffstat (limited to 'system/lib/libc/musl/src/string/wcstok.c')
-rw-r--r--system/lib/libc/musl/src/string/wcstok.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/wcstok.c b/system/lib/libc/musl/src/string/wcstok.c
new file mode 100644
index 00000000..ecc80331
--- /dev/null
+++ b/system/lib/libc/musl/src/string/wcstok.c
@@ -0,0 +1,12 @@
+#include <wchar.h>
+
+wchar_t *wcstok(wchar_t *restrict s, const wchar_t *restrict sep, wchar_t **restrict p)
+{
+ if (!s && !(s = *p)) return NULL;
+ s += wcsspn(s, sep);
+ if (!*s) return *p = 0;
+ *p = s + wcscspn(s, sep);
+ if (**p) *(*p)++ = 0;
+ else *p = 0;
+ return s;
+}