PR MALLOC
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_MALLOC(_bytes);
[edit] Parameter
_bytes- Size of the requested memory block.
[edit] Returns
An untyped pointer to the allocated memory, or if the allocation attempt fails, NULL. Call PR_GetError() to retrieve the error returned by the libc function malloc().
[edit] Description
This macro allocates memory of the requested size from the heap.