RCP API  6.61.0

◆ rcp_malloc()

void* rcp_malloc ( size_t  NBYTES)

Wrapper for memory allocations required by RCP API.

This function must be implemented by the client code. In most cases this can simply be implemented as such:

void * rcp_malloc(size_t NBYTES)
{
return malloc(NBYTES);
}