1 /* 2 * Copyright (c) 1998-2002, Darren Hiebert 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 * Main part private interface to main.c 8 */ 9 #ifndef CTAGS_MAIN_MAIN_PRIVATE_H 10 #define CTAGS_MAIN_MAIN_PRIVATE_H 11 12 /* 13 * INCLUDE FILES 14 */ 15 #include "general.h" /* must always come first */ 16 17 /* 18 * FUNCTION PROTOTYPES 19 */ 20 extern int ctags_cli_main (int argc, char **argv); 21 22 #endif /* CTAGS_MAIN_MAIN_PRIVATE_H */ 23