mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
lz4: add memmove to arm string.c
This commit is contained in:
parent
d48fcbf5eb
commit
381b47f64e
4 changed files with 19 additions and 21 deletions
|
@ -16,6 +16,7 @@
|
|||
|
||||
int strlen(const char *str);
|
||||
void *memcpy(void *dest, const void *src, int len);
|
||||
void *memmove (void *dest, const void *src, size_t len);
|
||||
void *memset(void *dest, int c, int len);
|
||||
int memcmp(const void *av, const void *bv, int len);
|
||||
void memxor(uint8_t *dest, uint8_t *src, size_t len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue