NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
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
33
struct
ParseError
34
{
35
struct
Buffer
*
message
;
36
};
37
38
struct
ParseError
*
parse_error_new
(
void
);
39
void
parse_error_free
(
struct
ParseError
**pptr);
40
41
void
parse_error_reset
(
struct
ParseError
*pe);
42
43
#endif
/* MUTT_PARSE_PERROR_H */
parse_error_reset
void parse_error_reset(struct ParseError *pe)
Clear the contents of a ParseError.
Definition
perror.c:66
parse_error_free
void parse_error_free(struct ParseError **pptr)
Free a ParseError.
Definition
perror.c:50
parse_error_new
struct ParseError * parse_error_new(void)
Create a new ParseError.
Definition
perror.c:37
Buffer
String manipulation buffer.
Definition
buffer.h:36
ParseError
Detailed error information from config parsing.
Definition
perror.h:34
ParseError::message
struct Buffer * message
Error message.
Definition
perror.h:35