/**
 * This file automatically has been generated by ULS and
 *  contains an implementation of lexical analyzer
 *  for parsing the programming language 'sample1'.
 *
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */
#ifndef __OUT_C_1_H__
#define __OUT_C_1_H__

#define              ERR  -8
#define             NONE  -7
#define             LINK  -6
#define             TMPL  -5
#define              LNO  -4
#define              NUM  -3
#define               ID  -2
#define        EndOfFile  -1

#define              EOI  0

#define              AND  128
#define               OR  129

#define               EQ  130
#define              LEQ  131
#define              GEQ  132
#define              NEQ  133
#define              INC  134
#define              DEC  135

#define              ASM  150
#define          DEFAULT  151
#define             AUTO  152
#define               DO  153
#define           DOUBLE  154

#define             ELSE  160
#define             ENUM  161
#define             GOTO  165
#define               IF  166
#define            BREAK  167
#define             CASE  168
#define           SWITCH  169

#define          TYPEDEF  170
#define            UNION  171
#define             CHAR  172
#define           EXTERN  173
#define            FLOAT  174
#define              FOR  175
#define         CONTINUE  176
#define        TOK_CONST  177
#define              INT  178
#define             LONG  179

#define         REGISTER  180
#define           RETURN  185
#define            SHORT  186
#define           SIGNED  187
#define           SIZEOF  188
#define           STATIC  189

#define           STRUCT  190
#define         UNSIGNED  191
#define         TOK_VOID  192
#define         VOLATILE  193
#define            WHILE  194

#endif

