NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
pool.h
Go to the documentation of this file.
1
23#ifndef MUTT_MUTT_POOL_H
24#define MUTT_MUTT_POOL_H
25
26struct Buffer;
27
28void buf_pool_cleanup(void);
29struct Buffer *buf_pool_get (void);
30void buf_pool_release(struct Buffer **ptr);
31
32#endif /* MUTT_MUTT_POOL_H */
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:81
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition: pool.c:94
void buf_pool_cleanup(void)
Release the Buffer pool.
Definition: pool.c:67
String manipulation buffer.
Definition: buffer.h:36