aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wrap/wcsxfrm.c
diff options
context:
space:
mode:
Diffstat (limited to 'memory/wrap/wcsxfrm.c')
-rw-r--r--memory/wrap/wcsxfrm.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/memory/wrap/wcsxfrm.c b/memory/wrap/wcsxfrm.c
new file mode 100644
index 0000000..4f39a31
--- /dev/null
+++ b/memory/wrap/wcsxfrm.c
@@ -0,0 +1,8 @@
+#include "memory.h"
+#include <wchar.h>
+
+size_t _wcsxfrm_wrap(wchar_t *restrict destination,
+ wchar_t const *restrict source, size_t count)
+{
+ return wcsxfrm(destination, source, count);
+}