xref: /Universal-ctags/main/lxpath_p.h (revision eb4800429bc3a6c786cbb576e80b635493612e89)
1 /*
2 *   Copyright (c) 2016, Masatake YAMATO
3 *   Copyright (c) 2016, Red Hat, Inc.
4 *
5 *   This source code is released for free distribution under the terms of the
6 *   GNU General Public License version 2 or (at your option) any later version.
7 *
8 *   Xpath based parer API for the main part
9 */
10 #ifndef CTAGS_LXPATH_PARSE_PRIVATE_H
11 #define CTAGS_LXPATH_PARSE_PRIVATE_H
12 
13 /*
14 *   INCLUDE FILES
15 */
16 
17 #include "general.h"  /* must always come first */
18 #include "types.h"
19 
20 
21 /*
22 *   FUNCTION PROTOTYPES
23 */
24 
25 extern void addTagXpath (const langType language, tagXpathTable *xpathTable);
26 extern void removeTagXpath (const langType language, tagXpathTable *xpathTable);
27 
28 #endif  /* CTAGS_LXPATH_PARSE_PRIVATE_H */
29