blob: c00e2143c84187232697397ac542f59583663cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* tlp-config.c - header exporting configuration stuff
*
* Copyright 2007 Jjgod Jiang
* Derived from the Perl implementation by Norbert Preining
*
* This file is licensed under the GNU General Public License version 2
* or any later version. */
#ifndef __TLP_CONFIG__
#define __TLP_CONFIG__
/* We use the following pointers to encapsulate the real config module
* implementation: we could use static allocated arrays, or we could
* use dynamic allocated ones, as long as we follow the rule (put a
* NULL pointer at the end of it), internal implementation does not
* matter. */
extern tlp_str_list tlp_meta_categories;
extern tlp_str_list tlp_normal_categories;
extern tlp_str_list tlp_categories;
#endif
|