iconv: fix missing bounds checking for shift_jis decoding
[musl.git] / src / string / wcstok.c
blobecc8033190c781c6f75574686d3681254dee843f
1 #include <wchar.h>
3 wchar_t *wcstok(wchar_t *restrict s, const wchar_t *restrict sep, wchar_t **restrict p)
5 if (!s && !(s = *p)) return NULL;
6 s += wcsspn(s, sep);
7 if (!*s) return *p = 0;
8 *p = s + wcscspn(s, sep);
9 if (**p) *(*p)++ = 0;
10 else *p = 0;
11 return s;