#include <stdlib.h> void cfree(void *pointer);
This function returns the memory allocated by calloc (see section calloc) to the heap.
None.
not ANSI, not POSIX
Complex *x = calloc(12, sizeof(Complex)); cfree(x);
Go to the first, previous, next, last section, table of contents.