PR DELETE
From MDC
< NSPR API Reference < Memory Management Operations
Allocates memory of a specified size from the heap.
Contents |
[edit] Syntax
#include <prmem.h> void PR_DELETE(_ptr);
[edit] Parameter
_ptr- The address of memory to be returned to the heap. Must be an lvalue (an expression that can appear on the left side of an assignment statement).
[edit] Returns
Nothing.
[edit] Description
This macro returns allocated memory to the heap from the specified location and sets _ptr to NULL.