The free function

Name

free -- 

Synopsis

#include <stdlib.h>

void free (void *ptr);

Description

The free function causes the space pointed to by ptr to be deallocated that is, made available for further allocation.

Returns

The free function returns no value.

See Also

The calloc function
The malloc function
The realloc function

Implementation Notes

None