NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
pool.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_MUTT_POOL_H
24
#define MUTT_MUTT_POOL_H
25
26
struct
Buffer
;
27
28
void
buf_pool_cleanup
(
void
);
29
struct
Buffer
*
buf_pool_get
(
void
);
30
void
buf_pool_release
(
struct
Buffer
**ptr);
31
32
#endif
/* MUTT_MUTT_POOL_H */
buf_pool_get
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition
pool.c:91
buf_pool_release
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition
pool.c:111
buf_pool_cleanup
void buf_pool_cleanup(void)
Release the Buffer pool.
Definition
pool.c:75
Buffer
String manipulation buffer.
Definition
buffer.h:36