Important: The information in this document is obsolete and should not be used for new development.
OTMemzero
Initializes the specified memory range to 0.C INTERFACE
void OTMemzero (void* dest, size_t nBytes)C++ INTERFACE
None. C++ applications use the C interface to this function.PARAMETERS
dest
- A pointer to a memory location whose contents you are zeroing out.
nBytes
- The number of bytes of memory you want to zero out.
SEE ALSO
Use theOTMemset
function to set memory to a value other than 0.