mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 06:48:25 -05:00
14 lines
188 B
C
Executable File
14 lines
188 B
C
Executable File
/*
|
|
* Public domain.
|
|
* Win32 explicit_bzero compatibility shim.
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <string.h>
|
|
|
|
void
|
|
explicit_bzero(void *buf, size_t len)
|
|
{
|
|
SecureZeroMemory(buf, len);
|
|
}
|