memmove (msvcrt)
Last changed: -67.185.83.117

.
Summary
Copies count bytes of characters from src to dest. If some regions of the source area and the destination overlap, memmove ensures that the original source bytes in the overlapping region are copied before being overwritten.

C# Signature:

[DllImport("msvcrt.dll", CallingConvention=CallingConvention.Cdecl)]
static extern IntPtr memmove(IntPtr dest, IntPtr src, UIntPtr count);

VB Signature:

Declare Function memmove Lib "msvcrt.dll" (TODO) As TODO

User-Defined Types:

None.

Return Value:

The value of dest.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
memmove on MSDN