Thanks to visit codestin.com
Credit goes to code.neomutt.org

NeoMutt  2025-12-11-219-g274730
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
perror.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_PARSE_PERROR_H
24#define MUTT_PARSE_PERROR_H
25
34{
35 struct Buffer *message;
36};
37
38struct ParseError *parse_error_new(void);
39void parse_error_free(struct ParseError **pptr);
40
41void parse_error_reset(struct ParseError *pe);
42
43#endif /* MUTT_PARSE_PERROR_H */
void parse_error_reset(struct ParseError *pe)
Clear the contents of a ParseError.
Definition perror.c:66
void parse_error_free(struct ParseError **pptr)
Free a ParseError.
Definition perror.c:50
struct ParseError * parse_error_new(void)
Create a new ParseError.
Definition perror.c:37
String manipulation buffer.
Definition buffer.h:36
Detailed error information from config parsing.
Definition perror.h:34
struct Buffer * message
Error message.
Definition perror.h:35