1
0
Fork 0
firefox/docs/nspr/reference/pr_delete_.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

37 lines
498 B
ReStructuredText

PR_DELETE
=========
Allocates memory of a specified size from the heap.
Syntax
------
.. code::
#include <prmem.h>
void PR_DELETE(_ptr);
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).
Returns
~~~~~~~
Nothing.
Description
-----------
This macro returns allocated memory to the heap from the specified
location and sets ``_ptr`` to ``NULL``.