aboutsummaryrefslogtreecommitdiffstats
path: root/memdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'memdup.c')
-rw-r--r--memdup.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/memdup.c b/memdup.c
new file mode 100644
index 0000000..f3997a6
--- /dev/null
+++ b/memdup.c
@@ -0,0 +1,12 @@
+/* See LICENSE file for copyright and license details. */
+#include "libsimple.h"
+
+
+void *
+libsimple_memdup(const void *s, size_t n)
+{
+ void *ret = malloc(n);
+ if (!ret)
+ return NULL;
+ return memcpy(ret, s, n);
+}