Version bump.
[geany-mirror.git] / tagmanager / keyword.h
blob203f3599185cc7c7262757f6b9a08bb6f8e436ba
1 /*
3 * Copyright (c) 1998-2001, Darren Hiebert
5 * This source code is released for free distribution under the terms of the
6 * GNU General Public License.
8 * External interface to keyword.c
9 */
10 #ifndef _KEYWORD_H
11 #define _KEYWORD_H
14 * INCLUDE FILES
16 #include "general.h" /* must always come first */
18 #include "parse.h"
21 * FUNCTION PROTOTYPES
23 extern void addKeyword (const char *const string, langType language, int value);
24 extern int lookupKeyword (const char *const string, langType language);
25 extern void freeKeywordTable (void);
26 #ifdef TM_DEBUG
27 extern void printKeywordTable (void);
28 #endif
30 #endif /* _KEYWORD_H */
32 /* vi:set tabstop=8 shiftwidth=4: */