summaryrefslogtreecommitdiffstats
path: root/sw/z80/libc/string.c
diff options
context:
space:
mode:
authorleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-06-19 13:50:25 +0200
committerleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-06-19 13:50:25 +0200
commit335bc4afe0648ede6c7699541367db8e22355d72 (patch)
tree09175c9e14496ab7b36733f6c3c3bd9b85e1fbb8 /sw/z80/libc/string.c
parentAuthentication section (diff)
parentmerge branch 'naopross' (diff)
downloadz80uPC-335bc4afe0648ede6c7699541367db8e22355d72.tar.gz
z80uPC-335bc4afe0648ede6c7699541367db8e22355d72.zip
Merge branch 'master' of github.com:NaoPross/z80uPC into atlas
Serial updates from NaoPross
Diffstat (limited to '')
-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;
+}