lex.h revision 22997
1226584Sdim/*-
2226584Sdim * Copyright (c) 1994-1995 S�ren Schmidt
3226584Sdim * All rights reserved.
4226584Sdim *
5226584Sdim * Redistribution and use in source and binary forms, with or without
6226584Sdim * modification, are permitted provided that the following conditions
7226584Sdim * are met:
8226584Sdim * 1. Redistributions of source code must retain the above copyright
9226584Sdim *    notice, this list of conditions and the following disclaimer,
10226584Sdim *    in this position and unchanged.
11226584Sdim * 2. Redistributions in binary form must reproduce the above copyright
12226584Sdim *    notice, this list of conditions and the following disclaimer in the
13226584Sdim *    documentation and/or other materials provided with the distribution.
14226584Sdim * 3. The name of the author may not be used to endorse or promote products
15226584Sdim *    derived from this software withough specific prior written permission
16226584Sdim *
17234353Sdim * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18226584Sdim * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19226584Sdim * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20234353Sdim * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21234353Sdim * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22234353Sdim * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23234353Sdim * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24234353Sdim * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25226584Sdim * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26226584Sdim * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27226584Sdim *
28226584Sdim *	$Id$
29226584Sdim */
30226584Sdim
31226584Sdim#define TNOP		256
32226584Sdim#define TLSH		257
33226584Sdim#define TRSH		258
34226584Sdim#define TCLK		259
35226584Sdim#define TNLK		260
36226584Sdim#define TSLK		261
37226584Sdim#define TLALT		262
38226584Sdim#define TLCTR		263
39226584Sdim#define TNEXT		264
40226584Sdim#define TRCTR		265
41226584Sdim#define TRALT		266
42226584Sdim#define TALK		267
43226584Sdim#define TASH		268
44226584Sdim#define TMETA		269
45226584Sdim#define TRBT		270
46226584Sdim#define TDBG		271
47226584Sdim#define TFUNC		272
48226584Sdim#define TSCRN		273
49234353Sdim#define TLET		274
50234353Sdim#define TNUM		275
51234353Sdim#define TFLAG		276
52226584Sdim#define TBTAB		277
53226584Sdim#define TSUSP		278
54226584Sdim
55226584Sdimextern int number;
56226584Sdimextern char letter;
57226584Sdimextern FILE *yyin;
58226584Sdim