Embedded TCP/IP stack
4.7.0
|
void fnet_memcpy | ( | FNET_COMP_PACKED_VAR void * | to_ptr, |
FNET_COMP_PACKED_VAR const void * | from_ptr, | ||
fnet_size_t | number_of_bytes | ||
) |
Copies bytes in memory.
to_ptr | Pointer to the memory location to copy to. |
from_ptr | Pointer to the memory location to copy from. |
number_of_bytes | Number of bytes to copy. |
This function copies number_of_bytes
bytes from memory area pointed by from_ptr
to memory area pointed by to_ptr
.
You may overload it by own implementation, using FNET_CFG_OVERLOAD_MEMCPY.