ZeroMemory function kernel32
Fills a block of memory with zeros.
To learn more, see learn.microsoft.com/previous-versions/windows/desktop/legacy/aa366920(v=vs.85).
Implementation
@pragma('vm:prefer-inline')
void ZeroMemory(Pointer destination, int length) =>
FillMemory(destination, length, 0);