delorie.com/djgpp/doc/libc/libc_87.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <stdlib.h> void cfree(void *pointer); |
This function returns the memory allocated by calloc (see section calloc) to the heap.
ANSI/ISO C | No |
POSIX | No |
Complex *x = calloc(12, sizeof(Complex)); cfree(x); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |