diff options
author | leleraffa97@hotmail.it <leleraffa97@hotmail.it> | 2017-06-19 15:06:25 +0200 |
---|---|---|
committer | leleraffa97@hotmail.it <leleraffa97@hotmail.it> | 2017-06-19 15:06:25 +0200 |
commit | acee9e74f6bd183b284af028b1f08aab666df9be (patch) | |
tree | 02d8df6267dd75dd92760ab9b8e924f4f4b8b400 /sw/z80/libc/include | |
parent | Merge branch 'master' of github.com:NaoPross/z80uPC into atlas (diff) | |
download | z80uPC-master.tar.gz z80uPC-master.zip |
boot improved
program allocation
Diffstat (limited to 'sw/z80/libc/include')
-rw-r--r-- | sw/z80/libc/include/string.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/z80/libc/include/string.h b/sw/z80/libc/include/string.h index f224c87..9c002e3 100644 --- a/sw/z80/libc/include/string.h +++ b/sw/z80/libc/include/string.h @@ -3,6 +3,10 @@ #include "types.h" +void * memset(void *dest, const int8_t src, size_t n); + void *memcpy(void *dest, const void *src, size_t n); +int8_t memcmp(const void *s1, const void *s2, size_t n); + #endif |