aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wcscpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'memory/wcscpy.c')
-rw-r--r--memory/wcscpy.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/memory/wcscpy.c b/memory/wcscpy.c
new file mode 100644
index 0000000..b583345
--- /dev/null
+++ b/memory/wcscpy.c
@@ -0,0 +1,7 @@
+#include "memory.h"
+
+wchar_t *wcscpy(wchar_t *destination, wchar_t const *source)
+{
+ wcspcpy(destination, source);
+ return destination;
+}