Repo re-org
This commit is contained in:
parent
312fee491c
commit
50998fcfb9
270 changed files with 9 additions and 9 deletions
13
reset-controller/fw/src/tinyaes_adaptor.c
Normal file
13
reset-controller/fw/src/tinyaes_adaptor.c
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
void *memcpy(void *restrict dest, const void *restrict src, size_t n) {
|
||||
unsigned char *d = dest;
|
||||
const unsigned char *s = src;
|
||||
|
||||
while (n--)
|
||||
*d++ = *s++;
|
||||
|
||||
return dest;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue