NeoMutt  2025-09-05-43-g177ed6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
node_condbool.h
Go to the documentation of this file.
1
23
24#ifndef MUTT_EXPANDO_NODE_CONDBOOL_H
25#define MUTT_EXPANDO_NODE_CONDBOOL_H
26
27#include "render.h"
28
29struct Buffer;
30struct ExpandoNode;
31
32int node_condbool_render(const struct ExpandoNode *node,
33 const struct ExpandoRenderCallback *erc, struct Buffer *buf,
34 int max_cols, void *data, MuttFormatFlags flags);
35
36#endif /* MUTT_EXPANDO_NODE_CONDBOOL_H */
int node_condbool_render(const struct ExpandoNode *node, const struct ExpandoRenderCallback *erc, struct Buffer *buf, int max_cols, void *data, MuttFormatFlags flags)
Callback for every bool node - Implements ExpandoNode::render() -.
Render Expandos using Data.
uint8_t MuttFormatFlags
Flags for expando_render(), e.g. MUTT_FORMAT_FORCESUBJ.
Definition render.h:32
String manipulation buffer.
Definition buffer.h:36
Basic Expando Node.
Definition node.h:67