Previous: allocators typedefs, Up: allocators [Contents][Index]
Allocate memory in a way similar to the standard malloc(), using the allocator A. If an
error occurs: an exception is raised by jumping to the location L. This function never
returns NULL.
Reallocate memory in a way similar to the standard realloc(), using the allocator A. If
an error occurs: an exception is raised by jumping to the location L. This function never
returns NULL. Only blocks of memory allocated using A can be reallocated using A.
Allocate memory in a way similar to the standard calloc(), using the allocator A. If an
error occurs: an exception is raised by jumping to the location L. This function never
returns NULL.
Release memory in a way similar to the standard free(), using the allocator A.
Previous: allocators typedefs, Up: allocators [Contents][Index]
This document describes version 0.2.2-devel.3 of CCMemory.