aboutsummaryrefslogtreecommitdiff
path: root/lib/include/common.h
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2021-04-20 22:05:13 +0200
committerjohannst <johannes.stoelp@gmail.com>2021-04-20 22:05:13 +0200
commit1df4dfdcdbbaef7e5b32c5c0bfadec02b3ccd6f0 (patch)
tree467a166384174cf4877aa9492f31e194f3ab82e8 /lib/include/common.h
parent3155439c1a96f1964aaee799b008331d0b362db3 (diff)
downloaddynld-1df4dfdcdbbaef7e5b32c5c0bfadec02b3ccd6f0.tar.gz
dynld-1df4dfdcdbbaef7e5b32c5c0bfadec02b3ccd6f0.zip
added memcpy + tests for memcpy/memset
Diffstat (limited to 'lib/include/common.h')
-rw-r--r--lib/include/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/include/common.h b/lib/include/common.h
index 1e48097..d006d71 100644
--- a/lib/include/common.h
+++ b/lib/include/common.h
@@ -15,3 +15,5 @@
void* memset(void* s, int c, size_t n);
+void* memcpy(void* d, const void* s, size_t n);
+