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