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
|
/*
* scanner-smi.h --
*
* Definition of lexical tokens of the SMIv1/v2 MIB module language.
*
* Copyright (c) 1999 Frank Strauss, Technical University of Braunschweig.
*
* See the file "COPYING" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* @(#) $Id: scanner-smi.h 973 2000-07-17 09:34:36Z strauss $
*/
#ifndef _SCANNER_SMI_H
#define _SCANNER_SMI_H
#include <stdio.h>
#include "parser-smi.h"
#define YY_NO_UNPUT
extern char *yytext;
extern size_t yyleng;
extern int smiEnterLexRecursion(FILE *file);
extern void smiLeaveLexRecursion();
#endif /* _SCANNER_SMI_H */
|