diff options
author | Nao Pross <naopross@thearcway.org> | 2017-06-16 13:57:39 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-06-16 13:57:39 +0200 |
commit | 08fc6f3fd4461bfc78cd279809e1bf173e9f646e (patch) | |
tree | 3194ab2330128c74e2a9ced876b526931358dd6a /sw/z80/libc/include/string.h | |
parent | merge branch 'hardware' (diff) | |
parent | fixed typo in usart.h and in doc (diff) | |
download | z80uPC-08fc6f3fd4461bfc78cd279809e1bf173e9f646e.tar.gz z80uPC-08fc6f3fd4461bfc78cd279809e1bf173e9f646e.zip |
merge branch 'naopross'
merge to get the new doc on master
Diffstat (limited to 'sw/z80/libc/include/string.h')
-rw-r--r-- | sw/z80/libc/include/string.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sw/z80/libc/include/string.h b/sw/z80/libc/include/string.h new file mode 100644 index 0000000..f224c87 --- /dev/null +++ b/sw/z80/libc/include/string.h @@ -0,0 +1,8 @@ +#ifndef __STRING_H__ +#define __STRING_H__ + +#include "types.h" + +void *memcpy(void *dest, const void *src, size_t n); + +#endif |