summaryrefslogtreecommitdiff
path: root/Master/tlpkg/lib/C/tlp-config.c
blob: aa164dfd6d2bef4c0606f178855714889c280721 (plain)
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
/* tlp-config.c - module 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. */

#include <stdlib.h>

#define TLP_META_CATEGORIES     "Collection", "Scheme"
#define TLP_NORMAL_CATEGORIES   "Package", "TLCore", "Documentation"

const char *_tlp_meta_categories[] = {
    TLP_META_CATEGORIES, 
    NULL
};

const char *_tlp_normal_categories[] = {
    TLP_NORMAL_CATEGORIES,
    NULL
};

const char *_tlp_categories[] = {
    TLP_META_CATEGORIES, 
    TLP_NORMAL_CATEGORIES,
    NULL
};

const char **tlp_meta_categories   = _tlp_meta_categories;
const char **tlp_normal_categories = _tlp_normal_categories;
const char **tlp_categories        = _tlp_categories;