24#ifndef MUTT_MUTT_MEMORY_H
25#define MUTT_MUTT_MEMORY_H
27#if defined __has_include
28# if __has_include(<stdcountof.h>)
29# include <stdcountof.h>
38#define MAX(a, b) (((a) < (b)) ? (b) : (a))
40#define MIN(a, b) (((a) < (b)) ? (a) : (b))
42#define CLAMP(val, lo, hi) MIN(hi, MAX(lo, val))
46#define ROUND_UP(NUM, STEP) ((((NUM) + (STEP) -1) / (STEP)) * (STEP))
49# define countof(x) (sizeof(x) / sizeof((x)[0]))
52#define MUTT_MEM_CALLOC(n, type) ((type *) mutt_mem_calloc(n, sizeof(type)))
53#define MUTT_MEM_MALLOC(n, type) ((type *) mutt_mem_mallocarray(n, sizeof(type)))
55#define MUTT_MEM_REALLOC(pptr, n, type) \
57 _Generic(*(pptr), type *: mutt_mem_reallocarray(pptr, n, sizeof(type))) \
68#define FREE(x) mutt_mem_free(x)
void * mutt_mem_calloc(size_t nmemb, size_t size)
Allocate zeroed memory on the heap.
void * mutt_mem_mallocarray(size_t nmemb, size_t size)
Allocate memory on the heap (array version)
void mutt_mem_realloc(void *pptr, size_t size)
Resize a block of memory on the heap.
void mutt_mem_free(void *ptr)
Release memory allocated on the heap.
void mutt_mem_reallocarray(void *pptr, size_t nmemb, size_t size)
Resize a block of memory on the heap (array version)
void * mutt_mem_malloc(size_t size)
Allocate memory on the heap.