File: keyword.h

package info (click to toggle)
arduino-ctags 5.8-arduino11-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,976 kB
  • sloc: ansic: 35,037; makefile: 132; sh: 23
file content (34 lines) | stat: -rw-r--r-- 800 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
*   $Id: keyword.h 658 2008-04-20 23:21:35Z elliotth $
*
*   Copyright (c) 1998-2002, 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 DEBUG
extern void printKeywordTable (void);
#endif
extern int analyzeToken (vString *const name, langType language);

#endif  /* _KEYWORD_H */

/* vi:set tabstop=4 shiftwidth=4: */