NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
enum.h
Go to the documentation of this file.
1
23#ifndef MUTT_CONFIG_ENUM_H
24#define MUTT_CONFIG_ENUM_H
25
29struct EnumDef
30{
31 const char *name;
32 int count;
33 struct Mapping *lookup;
34};
35
36#endif /* MUTT_CONFIG_ENUM_H */
An enumeration.
Definition: enum.h:30
int count
Number of documented options.
Definition: enum.h:32
const char * name
Config variable.
Definition: enum.h:31
struct Mapping * lookup
Lookup table.
Definition: enum.h:33
Mapping between user-readable string and a constant.
Definition: mapping.h:33