NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
memory.h
Go to the documentation of this file.
1
23
24
#ifndef MUTT_MUTT_MEMORY_H
25
#define MUTT_MUTT_MEMORY_H
26
27
#if defined __has_include
28
# if __has_include(<stdcountof.h>)
29
# include <stdcountof.h>
30
# endif
31
#endif
32
#include <stddef.h>
33
34
#undef MAX
35
#undef MIN
36
#undef CLAMP
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))
43
44
#undef ROUND_UP
46
#define ROUND_UP(NUM, STEP) ((((NUM) + (STEP) -1) / (STEP)) * (STEP))
47
48
#if !defined(countof)
49
# define countof(x) (sizeof(x) / sizeof((x)[0]))
50
#endif
51
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)))
54
55
#define MUTT_MEM_REALLOC(pptr, n, type) \
56
( \
57
_Generic(*(pptr), type *: mutt_mem_reallocarray(pptr, n, sizeof(type))) \
58
)
59
60
void
*
mutt_mem_calloc
(
size_t
nmemb,
size_t
size);
61
void
mutt_mem_free
(
void
*ptr);
62
void
*
mutt_mem_malloc
(
size_t
size);
63
void
*
mutt_mem_mallocarray
(
size_t
nmemb,
size_t
size);
64
void
mutt_mem_realloc
(
void
*pptr,
size_t
size);
65
void
mutt_mem_reallocarray
(
void
*pptr,
size_t
nmemb,
size_t
size);
66
68
#define FREE(x) mutt_mem_free(x)
69
70
#endif
/* MUTT_MUTT_MEMORY_H */
mutt_mem_calloc
void * mutt_mem_calloc(size_t nmemb, size_t size)
Allocate zeroed memory on the heap.
Definition
memory.c:79
mutt_mem_mallocarray
void * mutt_mem_mallocarray(size_t nmemb, size_t size)
Allocate memory on the heap (array version).
Definition
memory.c:132
mutt_mem_realloc
void mutt_mem_realloc(void *pptr, size_t size)
Resize a block of memory on the heap.
Definition
memory.c:149
mutt_mem_free
void mutt_mem_free(void *ptr)
Release memory allocated on the heap.
Definition
memory.c:97
mutt_mem_reallocarray
void mutt_mem_reallocarray(void *pptr, size_t nmemb, size_t size)
Resize a block of memory on the heap (array version).
Definition
memory.c:165
mutt_mem_malloc
void * mutt_mem_malloc(size_t size)
Allocate memory on the heap.
Definition
memory.c:116