API Version: 2.0
Library Version: 2.72
#define g_memmove ( dest, src, len )
Copies a block of memory len bytes long, from src to dest. The source and destination areas may overlap.
len
src
dest
Just use memmove().
-
The destination address to copy the bytes to.
The source address to copy the bytes from.
The number of bytes to copy.