Re: what is faster, FastFillChar or ZeroMemory?

From: Rob Kennedy (.)
Date: 06/15/04


Date: Tue, 15 Jun 2004 09:51:49 -0500

Aleksey Kuznetsov wrote:
> Hello, I know that FastCodeFillChar is fastern than FillChar. But wether it
> faster than ZeroMemory function from Win32 API?

ZeroMemory is not implemented by Microsoft. It's left to the compiler
vendors to provide that function and a handful of others. ZeroMemory is
implemented in Windows.pas. There you can see exactly how it will
perform relative to FillChar.

-- 
Rob