Memory

Memory — Memory handling functions

Functions

Description

Wrappers around the free, malloc and calloc functions but called from inside the library. Required by some systems to handle multiple-HEAPs and pass memory to and from the library.

Functions

raptor_free_memory ()

void
raptor_free_memory (void *ptr);


raptor_alloc_memory ()

void *
raptor_alloc_memory (size_t size);

Returns


raptor_calloc_memory ()

void *
raptor_calloc_memory (size_t nmemb,
                      size_t size);

Returns

Types and Values