|
||
void free( void *buf )
void *buf; /* address of previously allocated buffer*/
|
|
|
Synopsis |
#include "stdlib.h"
The free function returns the memory pointed to by buf to the heap.
|
|
Parameters |
buf is a pointer which should have previously obtained by a call to malloc, calloc or realloc.
|
|
Return Value |
none.
|
|
See Also |
|
|
|
|