26 typedef void * (*sc68_alloc_t)(
unsigned int);
sc68_alloc_t SC68set_alloc(sc68_alloc_t alloc)
Set/get dynamic memory allocation handler.
void *(* sc68_alloc_t)(unsigned int)
Alloc function (malloc).
Definition: alloc68.h:26
void * SC68alloc(unsigned int n)
Allocate dynamic memory.
sc68_free_t SC68set_free(sc68_free_t free)
Set/get dynamic memory free handler.
void SC68free(void *data)
Free dynamic memory.
void(* sc68_free_t)(void *)
Free function (free).
Definition: alloc68.h:29