Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

These guidelines apply to the following standard memory management routines described in C99 Section 7.20.3:

Code Block
void * malloc(size_t size);

void * calloc(size_t nmemb, size_t size);

void * realloc(void *ptr, size_t size);

void free(void *ptr);

...