"Safe" memory management routines.
Function | Description | Links |
---|---|---|
mutt_mem_calloc() | Allocate zeroed memory on the heap | |
mutt_mem_free() | Release memory allocated on the heap | |
mutt_mem_malloc() | Allocate memory on the heap | |
mutt_mem_mallocarray() | Allocate memory on the heap (array version) | |
mutt_mem_realloc() | Resize a block of memory on the heap | |
mutt_mem_reallocarray() | Resize a block of memory on the heap (array version) | |
reallocarray() | reallocarray(3) implementation |