NeoMutt
2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
pcontext.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_PARSE_PCONTEXT_H
24
#define MUTT_PARSE_PCONTEXT_H
25
33
struct
ParseContext
34
{
35
int
dummy
;
36
};
37
38
struct
ParseContext
*
parse_context_new
(
void
);
39
void
parse_context_free
(
struct
ParseContext
**pptr);
40
41
#endif
/* MUTT_PARSE_PCONTEXT_H */
parse_context_free
void parse_context_free(struct ParseContext **pptr)
Free a ParseContext.
Definition
pcontext.c:48
parse_context_new
struct ParseContext * parse_context_new(void)
Create a new ParseContext.
Definition
pcontext.c:37
ParseContext
Context for config parsing (history/backtrace)
Definition
pcontext.h:34
ParseContext::dummy
int dummy
Definition
pcontext.h:35