1
0

wmemset.c 149 B

123456789
  1. #include <string.h>
  2. #include <wchar.h>
  3. wchar_t *wmemset(wchar_t *d, wchar_t c, size_t n)
  4. {
  5. wchar_t *ret = d;
  6. while (n--) *d++ = c;
  7. return ret;
  8. }