Move specified number of characters from one buffer to another
LPVOID memmove( LPVOID dest, LPCVOID src, size_t count )
Returns a pointer to moved characters.
EX1
void memmove_ex1() { char str1[40]; char str2[] = "Hello World!xxxxxxxx"; char* pRet = (char *) memmove(str1, str2, 12); out_str(pRet);// output "Hello World!" }
origin.h