NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
bool.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_CONFIG_BOOL_H
24
#define MUTT_CONFIG_BOOL_H
25
26
struct
Buffer
;
27
struct
ConfigSubset
;
28
struct
HashElem
;
29
30
extern
const
char
*
BoolValues
[];
31
32
int
bool_he_toggle
(
struct
ConfigSubset
*sub,
struct
HashElem
*he,
struct
Buffer
*err);
33
int
bool_str_toggle
(
struct
ConfigSubset
*sub,
const
char
*name,
struct
Buffer
*err);
34
35
#endif
/* MUTT_CONFIG_BOOL_H */
BoolValues
const char * BoolValues[]
Valid strings for creating a Bool.
Definition
bool.c:51
bool_str_toggle
int bool_str_toggle(struct ConfigSubset *sub, const char *name, struct Buffer *err)
Toggle the value of a bool.
Definition
bool.c:231
bool_he_toggle
int bool_he_toggle(struct ConfigSubset *sub, struct HashElem *he, struct Buffer *err)
Toggle the value of a bool.
Definition
bool.c:203
Buffer
String manipulation buffer.
Definition
buffer.h:36
ConfigSubset
A set of inherited config items.
Definition
subset.h:46
HashElem
The item stored in a Hash Table.
Definition
hash.h:44