[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

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

ANSI/ISO C No
POSIX No

Example

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