summaryrefslogtreecommitdiffstats
path: root/sw/z80/libc/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'sw/z80/libc/string.c')
-rw-r--r--sw/z80/libc/string.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sw/z80/libc/string.c b/sw/z80/libc/string.c
new file mode 100644
index 0000000..fd6a7ff
--- /dev/null
+++ b/sw/z80/libc/string.c
@@ -0,0 +1,13 @@
+#include "string.h"
+
+void *memcpy(void *dest, void *src, size_t n)
+{
+ char *dp = dest;
+ char *sp = src;
+
+ while (n--) {
+ *dp++ = *sp++;
+ }
+
+ return dest;
+}