implement non-stub strverscmp
[musl] / src / string / wmemset.c
1 #include <string.h>
2 #include <wchar.h>
3
4 wchar_t *wmemset(wchar_t *d, wchar_t c, size_t n)
5 {
6         wchar_t *ret = d;
7         while (n--) *d++ = c;
8         return ret;
9 }