sds_malloc

void *sds_malloc (size_t bytes);


Allocate memory.


This function allocates memory equal in size the amount returned by the memory functions.

The argument bytes is the amount of memory to allocate.

This function returns a pointer to the memory region. When the memory cannot be allocated, this function returns NULL.

Tell me about...

Programming Overview of SDS™ (Solutions Development System™)