wmemcpy.c 153 B

12345678
  1. #include <wchar.h>
  2. wchar_t *wmemcpy(wchar_t *restrict d, const wchar_t *restrict s, size_t n)
  3. {
  4. wchar_t *a = d;
  5. while (n--) *d++ = *s++;
  6. return a;
  7. }