Add files via upload

This commit is contained in:
vxunderground 2021-02-20 22:16:43 -06:00 committed by GitHub
parent 6ea7abd666
commit 171cefd112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
Stdio/WtCopyMemory.c Normal file

@ -0,0 +1,10 @@
PVOID WtCopyMemory(PVOID Destination, CONST PVOID Source, SIZE_T Length)
{
PBYTE D = (PBYTE)Destination;
PBYTE S = (PBYTE)Source;
while (Length--)
*D++ = *S++;
return Destination;
}