wmemmove.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
wmemmove.c (165B)
---
1 #include <string.h>
2 #include <wchar.h>
3
4 #undef wmemmove
5
6 wchar_t *
7 wmemmove(wchar_t *d, const wchar_t *s, size_t n)
8 {
9 return memmove(d, s, n * sizeof(wchar_t));
10 }