Defines common memory functions.
SUMMARY
Members | Descriptions |
---|---|
public void * malloc (size_t size) | Allocate additional memory. |
public void * calloc (size_t count,size_t size) | Allocate a block of memory for an array of count elements, each of them size bytes long, and initializes all bits with 0. |
public void * realloc (void * ptr,size_t size) | Reallocate the given area of memory. |
public void free (void * ptr) | Deallocates the given area of memory. |