Go to the first, previous, next, last section, table of contents.


cfree

Syntax

#include <stdlib.h>

void cfree(void *pointer);

Description

This function returns the memory allocated by calloc (see section calloc) to the heap.

Return Value

None.

Portability

not ANSI, not POSIX

Example

Complex *x = calloc(12, sizeof(Complex));
cfree(x);


Go to the first, previous, next, last section, table of contents.