www.delorie.com/djgpp//doc/libc-2.02/libc_81.html   search  
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.

  prev next   webmaster     delorie software   privacy  
  Copyright © 1998     Updated Dec 1998