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 keyword.c 8 */ 9 #ifndef CTAGS_MAIN_KEYWORD_PRIVATE_H 10 #define CTAGS_MAIN_KEYWORD_PRIVATE_H 11 12 /* 13 * INCLUDE FILES 14 */ 15 #include "general.h" /* must always come first */ 16 #include <stdio.h> 17 18 extern void freeKeywordTable (void); 19 20 extern void dumpKeywordTable (FILE *fp); 21 22 #ifdef DEBUG 23 extern void printKeywordTable (void); 24 #endif 25 26 #endif /* CTAGS_MAIN_KEYWORD_PRIVATE_H */ 27