mirror of
https://github.com/fluencelabs/musl
synced 2025-06-17 17:01:49 +00:00
13 lines
242 B
C
13 lines
242 B
C
![]() |
#include <wchar.h>
|
||
|
|
||
|
wchar_t *wcstok(wchar_t *s, const wchar_t *sep, wchar_t **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;
|
||
|
}
|