NeoMutt  2024-04-25-109-g83a6c4
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
inheritance.h
Go to the documentation of this file.
1
23#ifndef MUTT_CONFIG_INHERITANCE_H
24#define MUTT_CONFIG_INHERITANCE_H
25
26#include <stdint.h>
27
32{
33 struct HashElem *parent;
34 const char *name;
35 intptr_t var;
36};
37
38#endif /* MUTT_CONFIG_INHERITANCE_H */
The item stored in a Hash Table.
Definition: hash.h:43
An inherited config item.
Definition: inheritance.h:32
struct HashElem * parent
HashElem of parent config item.
Definition: inheritance.h:33
const char * name
Name of this config item.
Definition: inheritance.h:34
intptr_t var
(Pointer to) value, of config item
Definition: inheritance.h:35