wmemmove.c

The libc implementation

Author

Marcel Sondaar

License

Public Domain

Summary
wmemmove.cThe libc implementation
Functions
wmemmoveCopies n wide characters from s2 to s1, where s2 and s1 can overlap

Functions

wmemmove

wchar_t * wmemmove(wchar_t *s1,
const wchar_t *s2,
size_t n)

Copies n wide characters from s2 to s1, where s2 and s1 can overlap

Returns the value of s1

wchar_t * wmemmove(wchar_t *s1,
const wchar_t *s2,
size_t n)
Copies n wide characters from s2 to s1, where s2 and s1 can overlap