1 /*
2  * Copyright (c) 2015, Dmitri Tikhonov
3  *
4  * This source code is released for free distribution under the terms of the
5  * GNU General Public License version 2 or (at your option) any later version.
6  *
7  * selectors.h
8  */
9 
10 #ifndef CTAGS_MAIN_SELECTORS_H
11 #define CTAGS_MAIN_SELECTORS_H
12 
13 #include <stdio.h>
14 
15 const char *
16 selectByPickingPerlVersion (MIO *);
17 
18 const char *
19 selectByObjectiveCAndMatLabKeywords (MIO *);
20 
21 const char *
22 selectByObjectiveCKeywords(MIO *);
23 
24 const char *
25 selectByArrowOfR (MIO *);
26 
27 const char *
28 selectByRexxCommentAndDosbatchLabelPrefix (MIO *);
29 
30 #ifdef HAVE_LIBXML
31 const char *
32 selectByDTD (MIO *input);
33 #endif
34 
35 #endif
36