C++ Programming/Code/Standard C Library/Functions/memmove
< C++ Programming < Code < Standard C Library < Functionsmemmove
Syntax |
#include <cstring>
void *memmove( void *to, const void *from, size_t count );
|
The memmove() function is identical to memcpy(), except that it works even if to and from overlap.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.