NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
stailq.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_COMMANDS_STAILQ_H
24
#define MUTT_COMMANDS_STAILQ_H
25
26
#include "
core/lib.h
"
27
28
struct
Buffer
;
29
struct
ListHead;
30
struct
ParseContext
;
31
struct
ParseError
;
32
33
enum
CommandResult
parse_stailq
(
const
struct
Command
*cmd,
struct
Buffer
*line,
struct
ListHead *list,
const
struct
ParseContext
*pc,
struct
ParseError
*pe);
34
enum
CommandResult
parse_unstailq
(
const
struct
Command
*cmd,
struct
Buffer
*line,
struct
ListHead *list,
const
struct
ParseContext
*pc,
struct
ParseError
*pe);
35
36
#endif
/* MUTT_COMMANDS_STAILQ_H */
CommandResult
CommandResult
Error codes for command_t parse functions.
Definition
command.h:37
lib.h
Convenience wrapper for the core headers.
parse_stailq
enum CommandResult parse_stailq(const struct Command *cmd, struct Buffer *line, struct ListHead *list, const struct ParseContext *pc, struct ParseError *pe)
Parse a list command - Implements Command::parse() -.
Definition
stailq.c:52
parse_unstailq
enum CommandResult parse_unstailq(const struct Command *cmd, struct Buffer *line, struct ListHead *list, const struct ParseContext *pc, struct ParseError *pe)
Parse an unlist command - Implements Command::parse() -.
Definition
stailq.c:85
Buffer
String manipulation buffer.
Definition
buffer.h:36
Command
Definition
command.h:161
ParseContext
Context for config parsing (history/backtrace).
Definition
pcontext.h:34
ParseError
Detailed error information from config parsing.
Definition
perror.h:34