memmoveCopies a memory block | |||||||
Arguments
Return Valuedest, a pointer to the destination memory block is returned.ExplanationThe first n bytes of the memory block pointed to by src are copied to the memory block pointed to by dest. The block is copied correctly even if src and dest overlap. |