Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:05:33

0001 /*
0002  *  qp_lexyacc.h  --
0003  *  Define all (b)yacc and (f)lex external symbols to
0004  *  have qp_{scanner,parser}_ i.s.o yy as leading char's
0005  *
0006  *  Original: 14-Dec-1994 11:27
0007  *
0008  *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
0009  *
0010  *  $Id$
0011  *
0012  *  $Log$
0013  *  Revision 1.2  1996/04/23 18:38:44  maartenb
0014  *  - Add RCS keywords
0015  *
0016  *
0017  */
0018 
0019 #ifndef CERN_QP_LEXYACC
0020 #define CERN_QP_LEXYACC
0021 
0022 #define yydebug     qp_parser_debug
0023 #define yynerrs     qp_parser_nerrs
0024 #define yyerrflag   qp_parser_errflag
0025 #define yychar      qp_parser_char
0026 #define yyssp       qp_parser_ssp
0027 #define yyvsp       qp_parser_vsp
0028 #define yyval       qp_parser_val
0029 #define yyss        qp_parser_ss
0030 #define yyvs        qp_parser_vs
0031 #define yylhs       qp_parser_lhs
0032 #define yylen       qp_parser_len
0033 #define yydefred    qp_parser_defred
0034 #define yydgoto     qp_parser_dgoto
0035 #define yysindex    qp_parser_sindex
0036 #define yyrindex    qp_parser_rindex
0037 #define yygindex    qp_parser_gindex
0038 #define yytable     qp_parser_table
0039 #define yycheck     qp_parser_check
0040 #define yyname      qp_parser_name
0041 #define yyrule      qp_parser_rule
0042 #define yyparse     qp_parser_parse
0043 #define yyerror     qp_parser_error
0044 
0045 #ifndef yylex       /* only in parser */
0046 
0047 #define yylex       qp_scanner_lex
0048 #define yywrap      qp_scanner_wrap
0049 
0050 #endif
0051 
0052 #endif  /*  CERN_QP_LEXYACC */