NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
node_condition.h
Go to the documentation of this file.
1
24#ifndef MUTT_EXPANDO_NODE_CONDITION_H
25#define MUTT_EXPANDO_NODE_CONDITION_H
26
27struct ExpandoNode;
28
35{
38};
39
49{
53};
54
55struct ExpandoNode *node_condition_new(struct ExpandoNode *condition, struct ExpandoNode *if_true_tree, struct ExpandoNode *if_false_tree);
56
57#endif /* MUTT_EXPANDO_NODE_CONDITION_H */
struct ExpandoNode * node_condition_new(struct ExpandoNode *condition, struct ExpandoNode *if_true_tree, struct ExpandoNode *if_false_tree)
Create a new Condition Expando Node.
ExpandoConditionStart
Signals node_parse() if the parsing started in a conditional statement or not.
@ CON_NO_CONDITION
Parser is not currently in a condition.
@ CON_START
Parser is working on a condition.
ENCondition
Names for the Condition's children.
@ ENC_CONDITION
Index of Condition Node.
@ ENC_FALSE
Index of False Node.
@ ENC_TRUE
Index of True Node.
Basic Expando Node.
Definition: node.h:67