Home | History | Annotate | Download | only in musl-multibyte

Lines Matching refs:ws

14 size_t mbsrtowcs(wchar_t *restrict ws, const char **restrict src, size_t wn, mbstate_t *restrict st)
21 if (ws) {
29 if (!ws) for (;;) {
60 *ws++ = *s++;
61 *ws++ = *s++;
62 *ws++ = *s++;
63 *ws++ = *s++;
68 *ws++ = *s++;
85 *ws++ = c;
91 if (ws) {
92 *ws = 0;
98 if (ws) *src = (const void *)s;