4    return ladel_calloc(num, size);
 
 
    8    return ladel_malloc(size, 1);
 
 
   13    return ladel_realloc(ptr, size, 1, &status);
 
 
   21    return ladel_set_alloc_config_calloc(calloc);
 
 
   24    return ladel_set_alloc_config_malloc(malloc);
 
 
   27    return ladel_set_alloc_config_realloc(realloc);
 
 
   30    return ladel_set_alloc_config_free(free);
 
 
   33    return ladel_set_print_config_printf(printf);
 
 
void qpalm_free(void *ptr)
 
calloc_sig * qpalm_set_alloc_config_calloc(calloc_sig *calloc)
Set the calloc function used by QPALM.
 
realloc_sig * qpalm_set_alloc_config_realloc(realloc_sig *realloc)
Set the realloc function used by QPALM.
 
void * qpalm_malloc(size_t size)
 
printf_sig * qpalm_set_print_config_printf(printf_sig *printf)
Set the printf function used by QPALM.
 
void * qpalm_calloc(size_t num, size_t size)
 
malloc_sig * qpalm_set_alloc_config_malloc(malloc_sig *malloc)
Set the malloc function used by QPALM.
 
free_sig * qpalm_set_alloc_config_free(free_sig *free)
Set the free function used by QPALM.
 
void * qpalm_realloc(void *ptr, size_t size)
 
Custom memory allocation, print and utility functions, and data types for floats and ints.