Hello,
I have some my variable: uint8 my_buff[20];
When it is filled up, I want copy its values to another buffer.
Is there a "memcpy" function, which we know from C? Like this one:
memcpy( void *to, const void *from, size_t count );
Is there "memcpy" function for copying from one buffer to second one?
(2 posts) (2 voices)-
Posted 4 years ago #
-
Yup, we link against newlib. Just
#include <string.h>
.http://leaflabs.com/docs/arm-gcc.html#using-the-c-standard-library
Posted 4 years ago #
Reply
You must log in to post.