Dave's Brain

Browse - programming tips - zeromemory

Date: 2004aug22
Platform: win32

Level: beginnner

Q.  What's the best way (in win32) to clear memory?

A.

In ye olden days I used to code:

	memset(&MyStruct, 0, sizeof(MyStruct));

Now I write:

	ZeroMemory(&MyStruct, sizeof(MyStruct));

Which is on character longer but reads nicer.

This is defined in the Win32 headers as:

#define ZeroMemory(Destination,Length) memset((Destination),0,(Length))
What this info useful to you? You can donate to say thanks

Add a comment

Sign in to add a comment
Copyright © 2008-2012, dave - Code samples on Dave's Brain is licensed under the Creative Commons Attribution 2.5 License. However other material, including English text has all rights reserved.
Advertisements: