8cb2cf0997
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4 ea778897-0a13-0410-b9d1-a72fbfd435f5
33 lines
680 B
C
33 lines
680 B
C
/*
|
|
*
|
|
* Copyright (c) 1998-2001, Darren Hiebert
|
|
*
|
|
* This source code is released for free distribution under the terms of the
|
|
* GNU General Public License.
|
|
*
|
|
* External interface to keyword.c
|
|
*/
|
|
#ifndef _KEYWORD_H
|
|
#define _KEYWORD_H
|
|
|
|
/*
|
|
* INCLUDE FILES
|
|
*/
|
|
#include "general.h" /* must always come first */
|
|
|
|
#include "parse.h"
|
|
|
|
/*
|
|
* FUNCTION PROTOTYPES
|
|
*/
|
|
extern void addKeyword (const char *const string, langType language, int value);
|
|
extern int lookupKeyword (const char *const string, langType language);
|
|
extern void freeKeywordTable (void);
|
|
#ifdef TM_DEBUG
|
|
extern void printKeywordTable (void);
|
|
#endif
|
|
|
|
#endif /* _KEYWORD_H */
|
|
|
|
/* vi:set tabstop=8 shiftwidth=4: */
|