lex.h revision 32316
12088Ssos/*-
25994Ssos * Copyright (c) 1994-1995 S�ren Schmidt
32088Ssos * All rights reserved.
42088Ssos *
52088Ssos * Redistribution and use in source and binary forms, with or without
62088Ssos * modification, are permitted provided that the following conditions
72088Ssos * are met:
82088Ssos * 1. Redistributions of source code must retain the above copyright
95994Ssos *    notice, this list of conditions and the following disclaimer,
105994Ssos *    in this position and unchanged.
112088Ssos * 2. Redistributions in binary form must reproduce the above copyright
122088Ssos *    notice, this list of conditions and the following disclaimer in the
132088Ssos *    documentation and/or other materials provided with the distribution.
142088Ssos * 3. The name of the author may not be used to endorse or promote products
152088Ssos *    derived from this software withough specific prior written permission
162088Ssos *
172088Ssos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
182088Ssos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
192088Ssos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
202088Ssos * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
212088Ssos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
222088Ssos * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232088Ssos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242088Ssos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252088Ssos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
262088Ssos * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272088Ssos *
2832316Syokota *	$Id: lex.h,v 1.4 1997/02/22 16:05:57 peter Exp $
292088Ssos */
302088Ssos
312088Ssos#define TNOP		256
322088Ssos#define TLSH		257
332088Ssos#define TRSH		258
342088Ssos#define TCLK		259
352088Ssos#define TNLK		260
362088Ssos#define TSLK		261
372088Ssos#define TLALT		262
382088Ssos#define TLCTR		263
392088Ssos#define TNEXT		264
402088Ssos#define TRCTR		265
412088Ssos#define TRALT		266
422088Ssos#define TALK		267
432088Ssos#define TASH		268
442088Ssos#define TMETA		269
452088Ssos#define TRBT		270
462088Ssos#define TDBG		271
472088Ssos#define TFUNC		272
482088Ssos#define TSCRN		273
492088Ssos#define TLET		274
502088Ssos#define TNUM		275
512088Ssos#define TFLAG		276
522088Ssos#define TBTAB		277
535994Ssos#define TSUSP		278
5432316Syokota#define TACC		279
552088Ssos
562088Ssosextern int number;
572088Ssosextern char letter;
582088Ssosextern FILE *yyin;
59