NeoMutt  2025-12-11-58-g09398d
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
set.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_PARSE_SET_H
24#define MUTT_PARSE_SET_H
25
26#include "core/lib.h"
27
28struct Buffer;
29
40
41enum CommandResult parse_set(const struct Command *cmd, struct Buffer *line, struct Buffer *err);
42
43#endif /* MUTT_PARSE_SET_H */
CommandResult
Error codes for command_t parse functions.
Definition command.h:35
Convenience wrapper for the core headers.
enum CommandResult parse_set(const struct Command *cmd, struct Buffer *line, struct Buffer *err)
Parse the 'set' family of commands - Implements Command::parse() -.
Definition set.c:473
MuttSetCommand
Flags for parse_set()
Definition set.h:34
@ MUTT_SET_INV
default is to invert all vars
Definition set.h:36
@ MUTT_SET_SET
default is to set all vars
Definition set.h:35
@ MUTT_SET_RESET
default is to reset all vars to default
Definition set.h:38
@ MUTT_SET_UNSET
default is to unset all vars
Definition set.h:37
String manipulation buffer.
Definition buffer.h:36