Update to version p5.9.20211031.0 of ctags
[geany-mirror.git] / ctags / main / selectors.h
blobe90bf2690390f03d051b9144c8ecc9b8fb861bd5
1 /*
2 * Copyright (c) 2015, Dmitri Tikhonov
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.
7 * selectors.h
8 */
10 #ifndef CTAGS_MAIN_SELECTORS_H
11 #define CTAGS_MAIN_SELECTORS_H
13 #include "types.h"
15 const char *
16 selectByPickingPerlVersion (MIO *, langType *, unsigned int);
18 const char *
19 selectByObjectiveCAndMatLabKeywords (MIO *, langType *, unsigned int);
21 const char *
22 selectByObjectiveCKeywords(MIO *, langType *, unsigned int);
24 const char *
25 selectByArrowOfR (MIO *, langType *, unsigned int);
27 const char *
28 selectByRexxCommentAndDosbatchLabelPrefix (MIO *, langType *, unsigned int);
30 const char *
31 selectLispOrLEXByLEXMarker (MIO *, langType *, unsigned int);
33 const char *
34 selectByXpathFileSpec (MIO *input, langType *candidates, unsigned int nCandidates);
36 #endif