forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.h
76 lines (71 loc) · 2.56 KB
/
lib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* @file
* Convenience wrapper for the config headers
*
* @authors
* Copyright (C) 2017-2018 Richard Russon <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page lib_config CONFIG: Flexible handling of config items
*
* User configurable variables.
*
* | File | Description |
* | :------------------ | :------------------------- |
* | config/address.c | @subpage config_address |
* | config/bool.c | @subpage config_bool |
* | config/charset.c | @subpage config_charset |
* | config/dump.c | @subpage config_dump |
* | config/enum.c | @subpage config_enum |
* | config/helpers.c | @subpage config_helpers |
* | config/long.c | @subpage config_long |
* | config/mbtable.c | @subpage config_mbtable |
* | config/number.c | @subpage config_number |
* | config/path.c | @subpage config_path |
* | config/quad.c | @subpage config_quad |
* | config/regex.c | @subpage config_regex |
* | config/set.c | @subpage config_set |
* | config/slist.c | @subpage config_slist |
* | config/sort.c | @subpage config_sort |
* | config/string.c | @subpage config_string |
* | config/subset.c | @subpage config_subset |
*/
#ifndef MUTT_CONFIG_LIB_H
#define MUTT_CONFIG_LIB_H
// IWYU pragma: begin_exports
#include "address.h"
#include "bool.h"
#include "charset.h"
#include "dump.h"
#include "enum.h"
#include "helpers.h"
#include "inheritance.h"
#include "mbtable.h"
#include "quad.h"
#include "regex2.h"
#include "set.h"
#include "sort2.h"
#include "subset.h"
#include "types.h"
// IWYU pragma: end_exports
/**
* module_init_config_t - Prototype for a config definition function
* @param cs Config items
* @retval bool true if all the config variables were registered
*/
typedef bool (*module_init_config_t)(struct ConfigSet *cs);
#endif /* MUTT_CONFIG_LIB_H */