vxug-WinAPI-Tricks/Stdio/CopyMemory.c
2021-05-13 22:57:11 -05:00

11 lines
198 B
C

PVOID CopyMemory(PVOID Destination, CONST PVOID Source, SIZE_T Length)
{
PBYTE D = (PBYTE)Destination;
PBYTE S = (PBYTE)Source;
while (Length--)
*D++ = *S++;
return Destination;
}