1 /* 2 * Copyright (c) 1998-2003, Darren Hiebert 3 * Copyright (c) 2018, Red Hat, Inc. 4 * Copyright (c) 2018, Masatake YAMATO 5 * 6 * This source code is released for free distribution under the terms of the 7 * GNU General Public License version 2 or (at your option) any later version. 8 * 9 * Declare variables visible to parsers 10 */ 11 #ifndef CTAGS_GVARS_H 12 #define CTAGS_GVARS_H 13 14 /* 15 * INCLUDE FILES 16 */ 17 #include "general.h" /* must always come first */ 18 19 #ifdef DEBUG 20 21 /* -d debugging output */ 22 extern long ctags_debugLevel; 23 24 #endif /* DEBUG */ 25 26 /* -V verbose */ 27 extern bool ctags_verbose; 28 29 #endif /* CTAGS_GVARS_H */ 30