1 /*
2  * scanner-smi.h --
3  *
4  *      Definition of lexical tokens of the SMIv1/v2 MIB module language.
5  *
6  * Copyright (c) 1999 Frank Strauss, Technical University of Braunschweig.
7  *
8  * See the file "COPYING" for information on usage and redistribution
9  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
10  *
11  * @(#) $Id: scanner-smi.h 973 2000-07-17 09:34:36Z strauss $
12  */
13 
14 #ifndef _SCANNER_SMI_H
15 #define _SCANNER_SMI_H
16 
17 #include <stdio.h>
18 
19 #include "parser-smi.h"
20 
21 #define YY_NO_UNPUT
22 
23 extern char *yytext;
24 extern int yyleng;
25 
26 extern int smiEnterLexRecursion(FILE *file);
27 extern void smiLeaveLexRecursion();
28 
29 #endif /* _SCANNER_SMI_H */
30