NeoMutt  2024-04-25-1-g3de005
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
node_text.h
Go to the documentation of this file.
1
24#ifndef MUTT_EXPANDO_NODE_TEXT_H
25#define MUTT_EXPANDO_NODE_TEXT_H
26
27struct ExpandoNode *node_text_new(const char *start, const char *end);
28struct ExpandoNode *node_text_parse(const char *s, const char *end, const char **parsed_until);
29
30#endif /* MUTT_EXPANDO_NODE_TEXT_H */
struct ExpandoNode * node_text_new(const char *start, const char *end)
Create a new Text ExpandoNode.
Definition: node_text.c:59
struct ExpandoNode * node_text_parse(const char *s, const char *end, const char **parsed_until)
Extract a block of text.
Definition: node_text.c:105
Basic Expando Node.
Definition: node.h:69
const char * end
End of string data.
Definition: node.h:80
const char * start
Start of string data.
Definition: node.h:79