lex.h revision 5994
1254721Semaste/*-
2254721Semaste * Copyright (c) 1994-1995 S�ren Schmidt
3254721Semaste * All rights reserved.
4254721Semaste *
5254721Semaste * Redistribution and use in source and binary forms, with or without
6254721Semaste * modification, are permitted provided that the following conditions
7254721Semaste * are met:
8254721Semaste * 1. Redistributions of source code must retain the above copyright
9254721Semaste *    notice, this list of conditions and the following disclaimer,
10254721Semaste *    in this position and unchanged.
11254721Semaste * 2. Redistributions in binary form must reproduce the above copyright
12254721Semaste *    notice, this list of conditions and the following disclaimer in the
13254721Semaste *    documentation and/or other materials provided with the distribution.
14254721Semaste * 3. The name of the author may not be used to endorse or promote products
15254721Semaste *    derived from this software withough specific prior written permission
16254721Semaste *
17254721Semaste * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18254721Semaste * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19254721Semaste * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20254721Semaste * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21254721Semaste * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22254721Semaste * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23254721Semaste * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24254721Semaste * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25254721Semaste * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26254721Semaste * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27254721Semaste *
28254721Semaste *	$Id: lex.h,v 1.1 1994/08/17 08:59:35 sos Exp $
29254721Semaste */
30254721Semaste
31254721Semaste#define TNOP		256
32254721Semaste#define TLSH		257
33254721Semaste#define TRSH		258
34254721Semaste#define TCLK		259
35254721Semaste#define TNLK		260
36254721Semaste#define TSLK		261
37254721Semaste#define TLALT		262
38254721Semaste#define TLCTR		263
39254721Semaste#define TNEXT		264
40254721Semaste#define TRCTR		265
41254721Semaste#define TRALT		266
42254721Semaste#define TALK		267
43254721Semaste#define TASH		268
44254721Semaste#define TMETA		269
45254721Semaste#define TRBT		270
46254721Semaste#define TDBG		271
47254721Semaste#define TFUNC		272
48254721Semaste#define TSCRN		273
49254721Semaste#define TLET		274
50254721Semaste#define TNUM		275
51254721Semaste#define TFLAG		276
52254721Semaste#define TBTAB		277
53254721Semaste#define TSUSP		278
54254721Semaste
55254721Semasteextern int number;
56254721Semasteextern char letter;
57254721Semasteextern FILE *yyin;
58254721Semaste