...
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); |
...