forked from universal-ctags/ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoconf.h
34 lines (28 loc) · 776 Bytes
/
autoconf.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
/*
* Copyright (c) 2011, Colomban Wendling <[email protected]>
*
* This source code is released for free distribution under the terms of the
* GNU General Public License version 2 or (at your option) any later version.
*
* Autoconf parser interface exported to the other parsers
*/
#ifndef CTAGS_AUTOCONF_H
#define CTAGS_AUTOCONF_H
#include "general.h"
typedef enum {
AUTOCONF_PACKAGE_KIND,
AUTOCONF_TEMPLATE_KIND,
AUTOCONF_MACRO_KIND,
AUTOCONF_OPTWITH_KIND,
AUTOCONF_OPTENABLE_KIND,
AUTOCONF_SUBST_KIND,
AUTOCONF_CONDITION_KIND,
AUTOCONF_DEFINITION_KIND,
} autoconfKind;
typedef enum {
AUTOCONF_OPTWITH_CMDLINE_ROLE,
} autoconfOptwithRole;
typedef enum {
AUTOCONF_OPTENABLE_CMDLINE_ROLE,
} autoconfOptenableRole;
#endif /* CTAGS_AUTOCONF_H */