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