-

Difference between revisions of "Functions HI-TECH C FREE"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(Created page with "<strong>FREE</strong> ==SYNOPSIS== #include <stdlib.h> void free(void * ptr) ==DESCRIPTION== <strong>Free</strong>() deallocates the block of memory at ptr, wh...")
 
(No difference)

Latest revision as of 19:55, 31 July 2017

FREE

SYNOPSIS

#include  <stdlib.h>

void      free(void * ptr)


DESCRIPTION

Free() deallocates the block of memory at ptr, which must have been obtained from a call to malloc() or calloc().

SEE ALSO

malloc, calloc