#define yy_create_buffer ssh_create_buffer #define yy_delete_buffer ssh_delete_buffer #define yy_scan_buffer ssh_scan_buffer #define yy_scan_string ssh_scan_string #define yy_scan_bytes ssh_scan_bytes #define yy_flex_debug ssh_flex_debug #define yy_init_buffer ssh_init_buffer #define yy_flush_buffer ssh_flush_buffer #define yy_load_buffer_state ssh_load_buffer_state #define yy_switch_to_buffer ssh_switch_to_buffer #define yyin sshin #define yyleng sshleng #define yylex sshlex #define yyout sshout #define yyrestart sshrestart #define yytext sshtext #define yylineno sshlineno #define yywrap sshwrap #line 21 "lex.yy.c" /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #define YY_BUF_SIZE 16384 typedef struct yy_buffer_state *YY_BUFFER_STATE; extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yytext_ptr ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ typedef unsigned int yy_size_t; struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". */ #define YY_CURRENT_BUFFER yy_current_buffer /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define YY_USES_REJECT typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state YY_PROTO(( void )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); static int yy_get_next_buffer YY_PROTO(( void )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yytext_ptr = yy_bp; \ yyleng = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #define YY_NUM_RULES 217 #define YY_END_OF_BUFFER 218 static yyconst short int yy_acclist[1162] = { 0, 2, 185, 2, 185, 218, 185, 186, 217, 2, 186, 217, 2, 217, 3, 186, 217, 1, 186, 217, 186, 217, 185, 186, 217, 4, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 185, 186, 217, 201, 217, 200, 217, 187, 217, 217, 216, 217, 215, 217, 202, 217, 217, 185, 2, 1, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 137, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 143, 185, 185, 185, 185, 185, 185, 185, 152, 185, 154, 185, 185, 185, 185, 185, 185, 185, 185, 201, 199, 188, 199, 190, 199, 191, 199, 192, 199, 193, 199, 194, 199, 195, 199, 196, 199, 197, 199, 198, 199, 199, 216, 214, 203, 214, 205, 214, 206, 214, 207, 214, 208, 214, 209, 214, 210, 214, 211, 214, 212, 214, 213, 214, 214, 91, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 94, 185, 185, 185, 185, 185, 21, 185, 22, 185, 185, 185, 24, 185, 185, 95, 185, 185, 185, 185, 185, 185, 185, 32, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 107, 185, 185, 185, 185, 185, 185, 185, 185, 50, 185, 185, 185, 185, 51, 185, 185, 185, 185, 185, 185, 185, 53, 185, 80, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 96, 185, 61, 185, 185, 185, 185, 185, 142, 185, 185, 185, 185, 149, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 188, 189, 203, 204, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 175, 185, 176, 185, 177, 185, 178, 185, 185, 185, 11, 185, 185, 185, 185, 16, 185, 185, 185, 185, 185, 185, 185, 185, 14, 185, 33, 185, 26, 185, 185, 185, 28, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 100, 185, 185, 185, 40, 185, 185, 185, 185, 185, 101, 185, 185, 185, 86, 185, 185, 185, 185, 185, 45, 185, 185, 185, 185, 185, 81, 185, 185, 185, 134, 185, 185, 185, 185, 185, 185, 185, 185, 67, 185, 185, 185, 87, 185, 117, 185, 185, 185, 185, 185, 185, 185, 43, 185, 185, 185, 62, 185, 185, 185, 185, 185, 185, 55, 185, 185, 185, 64, 185, 185, 185, 185, 130, 185, 185, 185, 57, 185, 185, 185, 185, 185, 185, 185, 119, 185, 185, 185, 138, 185, 185, 185, 144, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 188, 189, 203, 204, 185, 185, 185, 185, 168, 185, 185, 185, 185, 169, 185, 165, 185, 185, 185, 185, 10, 185, 185, 185, 185, 185, 17, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 34, 185, 185, 185, 185, 185, 39, 185, 185, 185, 116, 185, 79, 185, 185, 8, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 46, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 36, 185, 185, 114, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 115, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 63, 185, 185, 185, 185, 185, 185, 151, 185, 185, 185, 185, 185, 185, 185, 185, 185, 162, 185, 185, 185, 146, 185, 185, 185, 185, 179, 185, 180, 185, 181, 185, 182, 185, 185, 185, 185, 171, 185, 172, 185, 9, 185, 12, 185, 185, 185, 15, 185, 19, 185, 185, 185, 185, 31, 185, 185, 185, 27, 185, 25, 185, 185, 185, 93, 185, 38, 185, 109, 185, 185, 185, 185, 185, 185, 41, 185, 185, 185, 185, 185, 88, 185, 185, 185, 185, 44, 185, 185, 68, 185, 48, 185, 185, 185, 131, 185, 90, 185, 185, 185, 185, 110, 185, 185, 185, 60, 185, 185, 98, 185, 185, 185, 66, 185, 185, 185, 185, 135, 185, 185, 185, 185, 56, 185, 185, 185, 185, 185, 185, 54, 185, 82, 185, 185, 185, 185, 185, 185, 185, 185, 59, 185, 185, 185, 185, 185, 118, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 157, 185, 185, 185, 185, 185, 185, 173, 185, 185, 185, 166, 185, 185, 185, 185, 20, 185, 185, 185, 185, 185, 185, 185, 89, 185, 85, 185, 185, 185, 185, 185, 185, 185, 185, 6, 185, 69, 185, 5, 185, 185, 49, 185, 126, 185, 185, 185, 132, 185, 108, 185, 185, 185, 97, 185, 185, 83, 185, 185, 133, 185, 185, 136, 185, 185, 185, 105, 185, 185, 102, 185, 185, 185, 185, 185, 185, 185, 185, 47, 185, 185, 185, 185, 185, 185, 185, 145, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 163, 185, 164, 185, 147, 185, 185, 183, 185, 185, 185, 185, 185, 13, 185, 185, 185, 23, 185, 185, 122, 185, 29, 185, 185, 185, 185, 185, 185, 185, 42, 185, 185, 185, 185, 185, 52, 185, 84, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 76, 185, 58, 185, 185, 185, 185, 185, 185, 185, 185, 139, 185, 185, 185, 185, 185, 155, 185, 185, 160, 185, 156, 185, 185, 185, 185, 184, 185, 185, 185, 185, 185, 185, 185, 185, 70, 185, 185, 185, 185, 99, 185, 185, 185, 185, 185, 185, 127, 185, 185, 185, 106, 185, 7, 185, 103, 185, 185, 185, 185, 185, 185, 185, 30, 185, 18, 185, 185, 140, 185, 141, 185, 185, 185, 185, 159, 185, 158, 185, 161, 185, 185, 185, 185, 124, 185, 121, 185, 185, 185, 185, 128, 185, 185, 78, 185, 72, 185, 75, 185, 185, 185, 37, 185, 185, 73, 185, 35, 185, 129, 185, 185, 185, 185, 185, 185, 185, 150, 185, 185, 185, 185, 185, 185, 123, 185, 185, 185, 185, 104, 185, 77, 185, 65, 185, 185, 185, 185, 185, 185, 153, 185, 185, 185, 170, 185, 185, 185, 71, 185, 185, 185, 185, 111, 185, 185, 185, 185, 185, 185, 185, 185, 112, 185, 185, 113, 185, 148, 185, 174, 185, 167, 185, 185, 185, 185, 185, 120, 185, 92, 185, 74, 185, 125, 185 } ; static yyconst short int yy_accept[902] = { 0, 1, 3, 5, 5, 5, 5, 5, 6, 9, 12, 14, 17, 20, 22, 25, 28, 31, 34, 37, 40, 43, 46, 49, 52, 55, 58, 61, 64, 67, 70, 73, 76, 79, 82, 85, 88, 91, 94, 96, 98, 100, 101, 103, 105, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 174, 175, 176, 177, 178, 179, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 213, 214, 215, 217, 219, 221, 223, 225, 227, 229, 231, 233, 235, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 267, 269, 270, 271, 273, 274, 276, 277, 278, 279, 280, 281, 282, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315, 316, 317, 318, 319, 321, 322, 323, 324, 326, 327, 328, 329, 330, 331, 332, 334, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 357, 359, 360, 361, 362, 363, 365, 366, 367, 368, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 401, 403, 405, 407, 408, 409, 411, 412, 413, 414, 416, 417, 418, 419, 420, 421, 422, 423, 425, 427, 429, 430, 431, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 445, 446, 447, 449, 450, 451, 452, 453, 455, 456, 457, 459, 460, 461, 462, 463, 465, 466, 467, 468, 469, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 484, 485, 486, 488, 490, 491, 492, 493, 494, 495, 496, 498, 499, 500, 502, 503, 504, 505, 506, 507, 509, 510, 511, 513, 514, 515, 516, 518, 519, 520, 522, 523, 524, 525, 526, 527, 528, 530, 531, 532, 534, 535, 536, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 563, 564, 565, 566, 568, 570, 571, 572, 573, 575, 576, 577, 578, 579, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 593, 594, 595, 596, 597, 599, 600, 601, 603, 605, 606, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 639, 640, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 672, 673, 674, 675, 676, 677, 679, 680, 681, 682, 683, 684, 685, 686, 687, 689, 690, 691, 693, 694, 695, 696, 698, 700, 702, 704, 705, 706, 707, 709, 711, 713, 715, 716, 717, 719, 721, 722, 723, 724, 726, 727, 728, 730, 732, 733, 734, 736, 738, 740, 741, 742, 743, 744, 745, 747, 748, 749, 750, 751, 753, 754, 755, 756, 758, 759, 761, 763, 764, 765, 767, 769, 770, 771, 772, 774, 775, 776, 778, 779, 781, 782, 783, 785, 786, 787, 788, 790, 791, 792, 793, 795, 796, 797, 798, 799, 800, 802, 804, 805, 806, 807, 808, 809, 810, 811, 813, 814, 815, 816, 817, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 831, 832, 833, 834, 835, 836, 838, 839, 840, 842, 843, 844, 845, 847, 848, 849, 850, 851, 852, 853, 855, 857, 858, 859, 860, 861, 862, 863, 864, 866, 868, 870, 871, 873, 875, 876, 877, 879, 881, 882, 883, 885, 886, 888, 889, 891, 892, 894, 895, 896, 898, 899, 901, 902, 903, 904, 905, 906, 907, 908, 910, 911, 912, 913, 914, 915, 916, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 929, 931, 933, 934, 936, 937, 938, 939, 940, 942, 943, 944, 946, 947, 949, 951, 952, 953, 954, 955, 956, 957, 959, 960, 961, 962, 963, 965, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 978, 980, 981, 982, 983, 984, 985, 986, 987, 989, 990, 991, 992, 993, 995, 996, 998, 1000, 1001, 1002, 1003, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1014, 1015, 1016, 1017, 1019, 1020, 1021, 1022, 1023, 1024, 1026, 1027, 1028, 1030, 1032, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1042, 1044, 1045, 1047, 1049, 1050, 1051, 1052, 1054, 1056, 1058, 1059, 1060, 1061, 1063, 1065, 1066, 1067, 1068, 1070, 1071, 1073, 1075, 1077, 1078, 1079, 1081, 1082, 1084, 1086, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1108, 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1119, 1120, 1121, 1123, 1124, 1125, 1127, 1128, 1129, 1130, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1141, 1142, 1144, 1146, 1148, 1150, 1151, 1152, 1153, 1154, 1156, 1158, 1160, 1162, 1162 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 5, 1, 1, 1, 1, 6, 6, 1, 6, 6, 7, 1, 8, 9, 10, 11, 12, 13, 9, 9, 9, 14, 14, 1, 1, 1, 1, 1, 1, 1, 15, 16, 17, 18, 19, 20, 21, 1, 22, 1, 23, 24, 25, 26, 27, 28, 1, 29, 30, 31, 32, 1, 1, 33, 1, 34, 1, 35, 1, 1, 36, 1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 1, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst int yy_meta[62] = { 0, 1, 2, 3, 4, 2, 2, 1, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst short int yy_base[913] = { 0, 0, 0, 59, 61, 63, 64, 1012, 0, 66, 71, 1013, 0, 1013, 1004, 1013, 63, 26, 961, 968, 971, 960, 21, 969, 113, 164, 945, 40, 954, 29, 958, 31, 961, 950, 959, 42, 958, 945, 0, 1013, 1013, 209, 0, 1013, 1013, 260, 0, 87, 0, 990, 47, 948, 956, 941, 51, 933, 954, 954, 937, 941, 945, 93, 940, 945, 941, 43, 60, 947, 62, 946, 80, 926, 925, 932, 132, 137, 934, 72, 927, 932, 935, 136, 138, 151, 139, 151, 45, 156, 934, 69, 937, 186, 917, 192, 157, 237, 193, 209, 199, 921, 163, 173, 926, 929, 918, 917, 928, 925, 0, 911, 914, 924, 922, 922, 907, 905, 0, 898, 190, 905, 228, 896, 902, 909, 0, 1013, 283, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 0, 0, 1013, 294, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 0, 0, 909, 897, 903, 900, 899, 907, 902, 888, 904, 899, 898, 904, 276, 890, 885, 894, 891, 879, 882, 898, 886, 0, 878, 881, 883, 888, 0, 0, 212, 884, 0, 883, 0, 877, 883, 882, 868, 882, 155, 0, 867, 267, 878, 869, 864, 871, 188, 867, 871, 862, 858, 210, 862, 865, 218, 853, 859, 855, 852, 870, 861, 855, 851, 855, 850, 864, 221, 845, 848, 167, 857, 847, 268, 849, 0, 857, 842, 838, 0, 238, 845, 846, 837, 836, 843, 0, 0, 266, 842, 272, 845, 842, 837, 833, 839, 279, 844, 285, 824, 838, 830, 840, 277, 823, 834, 834, 0, 0, 818, 818, 827, 829, 0, 828, 814, 811, 0, 825, 811, 823, 805, 809, 816, 804, 809, 804, 801, 809, 801, 799, 330, 0, 335, 0, 816, 799, 810, 810, 796, 789, 793, 796, 798, 795, 794, 792, 0, 0, 0, 0, 797, 803, 0, 784, 789, 792, 0, 788, 798, 783, 795, 777, 788, 791, 0, 0, 0, 785, 780, 0, 772, 773, 780, 787, 772, 778, 774, 767, 782, 771, 0, 764, 761, 0, 776, 776, 770, 752, 0, 756, 762, 0, 760, 753, 762, 761, 0, 751, 751, 766, 754, 0, 748, 745, 0, 762, 747, 759, 753, 750, 739, 738, 0, 742, 744, 0, 755, 746, 749, 731, 738, 730, 733, 0, 735, 286, 0, 737, 738, 735, 734, 728, 0, 733, 728, 0, 735, 720, 729, 0, 718, 731, 0, 275, 729, 729, 715, 722, 317, 0, 723, 728, 0, 727, 709, 0, 721, 713, 709, 704, 709, 707, 719, 705, 709, 704, 707, 710, 709, 704, 693, 1013, 1013, 1013, 1013, 694, 701, 696, 699, 0, 340, 698, 689, 705, 0, 697, 692, 701, 0, 700, 699, 688, 697, 0, 696, 692, 203, 694, 677, 674, 691, 690, 673, 678, 0, 680, 686, 681, 671, 0, 679, 674, 0, 0, 664, 0, 664, 679, 665, 677, 653, 665, 654, 655, 664, 661, 670, 651, 645, 0, 667, 663, 655, 654, 646, 321, 649, 661, 280, 660, 643, 641, 653, 648, 0, 651, 0, 636, 651, 642, 641, 633, 636, 630, 647, 642, 641, 626, 639, 0, 638, 641, 623, 635, 622, 627, 622, 622, 626, 310, 629, 624, 316, 627, 0, 629, 611, 612, 623, 608, 0, 608, 608, 605, 610, 605, 617, 601, 606, 0, 604, 612, 0, 603, 596, 601, 0, 0, 0, 0, 611, 608, 593, 0, 0, 0, 0, 593, 595, 0, 0, 607, 590, 597, 0, 591, 603, 0, 0, 589, 588, 0, 0, 0, 578, 581, 598, 578, 588, 0, 583, 578, 576, 579, 0, 574, 578, 579, 0, 571, 0, 0, 587, 582, 0, 0, 569, 576, 567, 0, 570, 562, 0, 567, 0, 562, 578, 0, 564, 576, 571, 0, 556, 557, 572, 0, 554, 552, 562, 550, 562, 0, 0, 555, 552, 551, 546, 548, 561, 552, 0, 553, 552, 553, 556, 0, 551, 541, 536, 540, 543, 542, 546, 535, 547, 542, 0, 537, 542, 531, 530, 535, 541, 533, 528, 538, 518, 519, 522, 0, 517, 526, 519, 514, 508, 516, 0, 0, 521, 518, 519, 521, 507, 518, 509, 0, 0, 0, 501, 0, 0, 503, 512, 0, 0, 516, 504, 0, 505, 0, 504, 0, 509, 0, 496, 492, 506, 509, 504, 494, 506, 484, 492, 495, 479, 490, 0, 492, 488, 480, 494, 478, 479, 0, 476, 480, 474, 474, 474, 479, 471, 467, 482, 0, 0, 0, 468, 0, 480, 462, 459, 460, 0, 453, 454, 0, 444, 0, 0, 449, 27, 56, 136, 234, 244, 0, 284, 282, 291, 305, 0, 0, 320, 309, 310, 319, 313, 311, 315, 320, 322, 0, 0, 329, 324, 328, 325, 343, 344, 341, 329, 330, 348, 337, 342, 0, 334, 0, 0, 348, 336, 336, 0, 337, 343, 336, 337, 341, 347, 345, 0, 344, 344, 343, 0, 347, 345, 349, 364, 347, 0, 357, 353, 0, 0, 0, 368, 364, 361, 367, 364, 359, 0, 0, 367, 0, 0, 361, 363, 361, 0, 0, 0, 366, 367, 372, 0, 0, 385, 365, 383, 0, 380, 0, 0, 0, 389, 372, 0, 370, 0, 0, 0, 380, 387, 391, 391, 396, 389, 0, 394, 386, 387, 395, 386, 0, 385, 386, 389, 0, 0, 0, 399, 390, 392, 393, 397, 0, 399, 400, 0, 397, 395, 0, 399, 398, 398, 0, 409, 407, 414, 415, 409, 407, 411, 0, 417, 0, 0, 0, 0, 405, 415, 407, 411, 0, 0, 0, 0, 1013, 466, 473, 480, 487, 494, 500, 507, 513, 476, 477, 478, 479 } ; static yyconst short int yy_def[913] = { 0, 900, 1, 901, 901, 902, 902, 900, 903, 900, 900, 900, 904, 900, 903, 900, 903, 903, 903, 903, 903, 903, 903, 903, 900, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 905, 900, 900, 906, 907, 900, 900, 908, 903, 900, 904, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 905, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 909, 907, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 910, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 900, 911, 900, 912, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 900, 900, 900, 900, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 0, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900 } ; static yyconst short int yy_nxt[1075] = { 0, 8, 9, 10, 11, 12, 13, 14, 15, 8, 8, 8, 8, 8, 8, 8, 8, 16, 8, 17, 8, 8, 18, 19, 20, 8, 8, 8, 21, 8, 22, 23, 8, 8, 8, 24, 8, 25, 26, 27, 28, 29, 30, 8, 8, 31, 32, 8, 8, 8, 33, 8, 8, 34, 35, 8, 8, 36, 37, 8, 8, 8, 39, 40, 39, 40, 43, 43, 47, 47, 50, 44, 44, 47, 47, 52, 58, 109, 112, 53, 115, 59, 791, 120, 167, 116, 151, 110, 113, 47, 47, 156, 212, 168, 41, 213, 41, 121, 45, 45, 792, 152, 61, 61, 61, 61, 61, 61, 157, 187, 172, 169, 173, 51, 46, 170, 188, 175, 217, 218, 46, 176, 61, 61, 61, 61, 61, 61, 62, 63, 64, 65, 66, 46, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 46, 46, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 46, 96, 97, 98, 99, 100, 101, 102, 46, 103, 104, 180, 181, 183, 195, 204, 184, 185, 192, 205, 193, 182, 194, 197, 206, 793, 198, 322, 214, 196, 199, 200, 215, 201, 207, 254, 202, 208, 209, 255, 230, 210, 203, 231, 323, 211, 105, 232, 106, 256, 358, 359, 107, 126, 126, 126, 126, 126, 220, 257, 221, 222, 223, 224, 226, 240, 272, 241, 227, 242, 243, 249, 244, 245, 331, 563, 332, 228, 250, 251, 273, 127, 128, 229, 129, 130, 131, 252, 313, 246, 341, 564, 314, 132, 337, 247, 338, 133, 354, 134, 248, 135, 275, 136, 139, 139, 139, 139, 139, 233, 342, 355, 276, 234, 368, 277, 235, 236, 369, 794, 237, 297, 298, 299, 300, 238, 239, 281, 281, 281, 281, 281, 140, 141, 795, 142, 143, 144, 283, 283, 283, 283, 283, 325, 145, 362, 375, 378, 146, 397, 147, 376, 148, 326, 149, 363, 379, 385, 388, 389, 601, 497, 386, 511, 796, 512, 398, 797, 390, 602, 798, 391, 498, 392, 422, 422, 422, 422, 422, 424, 424, 424, 424, 424, 517, 547, 548, 549, 550, 630, 631, 518, 519, 597, 799, 634, 800, 801, 802, 803, 804, 805, 806, 520, 635, 521, 522, 523, 807, 598, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 38, 38, 38, 38, 38, 38, 38, 42, 42, 42, 42, 42, 42, 42, 46, 282, 284, 423, 425, 46, 46, 48, 48, 790, 48, 48, 48, 48, 124, 124, 789, 788, 124, 124, 125, 125, 787, 125, 125, 125, 125, 137, 137, 786, 137, 785, 137, 138, 138, 784, 138, 138, 138, 138, 783, 782, 781, 780, 779, 778, 777, 776, 775, 774, 773, 772, 771, 770, 769, 768, 767, 766, 765, 764, 763, 762, 761, 760, 759, 758, 757, 756, 755, 754, 753, 752, 751, 750, 749, 748, 747, 746, 745, 744, 743, 742, 741, 740, 739, 738, 737, 736, 735, 734, 733, 732, 731, 730, 729, 728, 727, 726, 725, 724, 723, 722, 721, 720, 719, 718, 717, 716, 715, 714, 713, 712, 711, 710, 709, 708, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 681, 680, 679, 678, 677, 676, 675, 674, 673, 672, 671, 670, 669, 668, 667, 666, 665, 664, 663, 662, 661, 660, 659, 658, 657, 656, 655, 654, 653, 652, 651, 650, 649, 648, 647, 646, 645, 644, 643, 642, 641, 640, 639, 638, 637, 636, 633, 632, 629, 628, 627, 626, 625, 624, 623, 622, 621, 620, 619, 618, 617, 616, 615, 614, 613, 612, 611, 610, 609, 608, 607, 606, 605, 604, 603, 600, 599, 596, 595, 594, 593, 592, 591, 590, 589, 588, 587, 586, 585, 584, 583, 582, 581, 580, 579, 578, 577, 576, 575, 574, 573, 572, 571, 570, 569, 568, 567, 566, 565, 562, 561, 560, 559, 558, 557, 556, 555, 554, 553, 552, 551, 546, 545, 544, 543, 542, 541, 540, 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, 529, 528, 527, 526, 525, 524, 516, 515, 514, 513, 510, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 484, 483, 482, 481, 480, 479, 478, 477, 476, 475, 474, 473, 472, 471, 470, 469, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 455, 454, 453, 452, 451, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 396, 395, 394, 393, 387, 384, 383, 382, 381, 380, 377, 374, 373, 372, 371, 370, 367, 366, 365, 364, 361, 360, 357, 356, 353, 352, 351, 350, 349, 348, 347, 346, 345, 344, 343, 340, 339, 336, 335, 334, 333, 330, 329, 328, 327, 324, 321, 320, 319, 318, 317, 316, 315, 312, 311, 310, 309, 308, 307, 306, 305, 304, 303, 302, 301, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 280, 279, 278, 274, 271, 270, 269, 268, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 253, 225, 219, 216, 191, 190, 189, 186, 179, 178, 177, 174, 171, 166, 165, 164, 163, 162, 161, 160, 159, 158, 155, 154, 153, 150, 123, 122, 119, 118, 117, 114, 111, 108, 60, 57, 56, 55, 54, 49, 900, 7, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900 } ; static yyconst short int yy_chk[1075] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 4, 4, 5, 6, 9, 9, 16, 5, 6, 10, 10, 17, 22, 27, 29, 17, 31, 22, 741, 35, 65, 31, 50, 27, 29, 47, 47, 54, 86, 65, 3, 86, 4, 35, 5, 6, 742, 50, 61, 61, 61, 61, 61, 61, 54, 77, 68, 66, 68, 16, 24, 66, 77, 70, 89, 89, 24, 70, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 74, 74, 75, 82, 84, 75, 75, 81, 84, 81, 74, 81, 83, 84, 743, 83, 189, 87, 82, 83, 83, 87, 83, 85, 100, 83, 85, 85, 100, 94, 85, 83, 94, 189, 85, 25, 94, 25, 101, 220, 220, 25, 41, 41, 41, 41, 41, 91, 101, 91, 91, 91, 91, 93, 96, 118, 96, 93, 96, 96, 98, 96, 96, 197, 447, 197, 93, 98, 98, 118, 41, 41, 93, 41, 41, 41, 98, 179, 97, 205, 447, 179, 41, 202, 97, 202, 41, 217, 41, 97, 41, 120, 41, 45, 45, 45, 45, 45, 95, 205, 217, 120, 95, 230, 120, 95, 95, 230, 744, 95, 163, 163, 163, 163, 95, 95, 126, 126, 126, 126, 126, 45, 45, 745, 45, 45, 45, 139, 139, 139, 139, 139, 192, 45, 223, 238, 240, 45, 253, 45, 238, 45, 192, 45, 223, 240, 246, 248, 248, 489, 376, 246, 394, 747, 394, 253, 748, 248, 489, 749, 248, 376, 248, 281, 281, 281, 281, 281, 283, 283, 283, 283, 283, 399, 431, 431, 431, 431, 520, 520, 399, 399, 486, 750, 523, 753, 754, 755, 756, 757, 758, 759, 399, 523, 399, 399, 399, 760, 486, 761, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 777, 780, 781, 782, 784, 785, 786, 787, 788, 789, 790, 792, 793, 794, 796, 797, 798, 799, 800, 802, 803, 807, 808, 809, 810, 811, 812, 815, 818, 819, 820, 824, 825, 826, 829, 830, 831, 833, 837, 838, 840, 844, 845, 846, 847, 848, 849, 851, 852, 853, 854, 855, 857, 858, 859, 863, 864, 865, 866, 867, 869, 870, 872, 873, 875, 876, 877, 879, 880, 881, 882, 883, 884, 885, 887, 892, 893, 894, 895, 901, 901, 901, 901, 901, 901, 901, 902, 902, 902, 902, 902, 902, 902, 903, 909, 910, 911, 912, 903, 903, 904, 904, 740, 904, 904, 904, 904, 905, 905, 737, 735, 905, 905, 906, 906, 734, 906, 906, 906, 906, 907, 907, 732, 907, 731, 907, 908, 908, 730, 908, 908, 908, 908, 729, 727, 723, 722, 721, 720, 719, 718, 717, 716, 715, 713, 712, 711, 710, 709, 708, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 693, 691, 689, 687, 686, 683, 682, 679, 675, 674, 673, 672, 671, 670, 669, 666, 665, 664, 663, 662, 661, 659, 658, 657, 656, 655, 654, 653, 652, 651, 650, 649, 648, 646, 645, 644, 643, 642, 641, 640, 639, 638, 637, 635, 634, 633, 632, 630, 629, 628, 627, 626, 625, 624, 621, 620, 619, 618, 617, 615, 614, 613, 611, 610, 609, 607, 606, 604, 602, 601, 599, 598, 597, 594, 593, 590, 588, 587, 586, 584, 583, 582, 581, 579, 578, 577, 576, 575, 571, 570, 567, 566, 564, 563, 562, 559, 558, 553, 552, 551, 546, 545, 544, 542, 541, 539, 538, 537, 536, 535, 534, 533, 532, 530, 529, 528, 527, 526, 524, 522, 521, 519, 518, 517, 516, 515, 514, 513, 512, 511, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 496, 494, 493, 492, 491, 490, 488, 487, 485, 484, 483, 482, 481, 479, 478, 477, 476, 475, 474, 473, 472, 471, 470, 469, 468, 467, 465, 462, 461, 459, 458, 457, 456, 454, 453, 452, 451, 450, 449, 448, 446, 445, 443, 442, 441, 440, 438, 437, 436, 434, 433, 432, 429, 428, 427, 426, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 409, 408, 407, 405, 404, 402, 401, 398, 397, 396, 395, 392, 391, 389, 388, 387, 385, 384, 382, 381, 380, 379, 378, 375, 373, 372, 371, 370, 369, 368, 367, 365, 364, 362, 361, 360, 359, 358, 357, 356, 354, 353, 351, 350, 349, 348, 346, 345, 344, 343, 341, 340, 338, 337, 336, 335, 333, 332, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 319, 318, 314, 313, 312, 311, 310, 309, 308, 306, 305, 304, 302, 301, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 266, 265, 264, 262, 261, 260, 259, 256, 255, 254, 252, 251, 250, 249, 247, 245, 244, 243, 242, 241, 239, 235, 234, 233, 232, 231, 228, 227, 226, 224, 222, 221, 219, 218, 216, 215, 214, 213, 212, 211, 210, 209, 208, 207, 206, 204, 203, 201, 200, 199, 198, 196, 195, 194, 193, 191, 188, 187, 186, 185, 184, 182, 180, 176, 175, 174, 173, 171, 170, 169, 168, 167, 166, 165, 164, 162, 161, 160, 159, 158, 157, 156, 155, 154, 153, 152, 151, 123, 122, 121, 119, 117, 115, 114, 113, 112, 111, 110, 109, 107, 106, 105, 104, 103, 102, 99, 92, 90, 88, 80, 79, 78, 76, 73, 72, 71, 69, 67, 64, 63, 62, 60, 59, 58, 57, 56, 55, 53, 52, 51, 49, 37, 36, 34, 33, 32, 30, 28, 26, 23, 21, 20, 19, 18, 14, 7, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900 } ; static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr; static char *yy_full_match; static int yy_lp; #define REJECT \ { \ *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \ yy_cp = yy_full_match; /* restore poss. backed-over text */ \ ++yy_lp; \ goto find_rule; \ } #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "/home/akim/src/a2ps-4.12/src/lexssh.l" #define INITIAL 0 #line 2 "/home/akim/src/a2ps-4.12/src/lexssh.l" /* * Lexer for a2ps. * * Copyright (c) 1988, 89, 90, 91, 92, 93 Miguel Santana * Copyright (c) 1995, 96, 97, 98 Akim Demaille, Miguel Santana * */ /* * This file is part of a2ps. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /* * $Id: lexssh.l,v 1.35 1998/01/28 17:38:11 demaille Exp $ */ #include "main.h" #include "yy2ssh.h" #include "parsessh.h" #include "xobstack.h" #include "regex.h" /* Defines if the comments are printed or not */ extern int strip_level; /* #define YY_DECL yylex (YYSTYPE *lvalp);*/ int yylex PARAMS ((void)); void yyerror PARAMS ((const char *)); /* Initilizes the obstacks */ void sshlex_initialize PARAMS ((void)); /* Obstack for strings reading */ static struct obstack string_stack; /* The file we scan. */ const char * sshfilename; #define LATEX_SYM_RETURN(Str) \ yylval.string = (uchar *) xstrdup (Str) ; return tLATEXSYMBOL ; #define RETURN_FACE(_f_)\ {yylval.face = _f_ ; return tFACE ;} #define RETURN_FFLAGS(_f_)\ {yylval.fflags = _f_ ; return tFFLAGS ;} #define STATE_STRING 1 #define STATE_REGEXP 2 #line 1128 "lex.yy.c" /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap YY_PROTO(( void )); #else extern int yywrap YY_PROTO(( void )); #endif #endif #ifndef YY_NO_UNPUT static void yyunput YY_PROTO(( int c, char *buf_ptr )); #endif #ifndef yytext_ptr static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen YY_PROTO(( yyconst char * )); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput YY_PROTO(( void )); #else static int input YY_PROTO(( void )); #endif #endif #if YY_STACK_USED static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; #ifndef YY_NO_PUSH_STATE static void yy_push_state YY_PROTO(( int new_state )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( void )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( void )); #endif #else #define YY_NO_PUSH_STATE 1 #define YY_NO_POP_STATE 1 #define YY_NO_TOP_STATE 1 #endif #ifdef YY_MALLOC_DECL YY_MALLOC_DECL #else #if __STDC__ #ifndef __cplusplus #include #endif #else /* Just try to get by without declaring the routines. This will fail * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) * or sizeof(void*) != sizeof(int). */ #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( yy_current_buffer->yy_is_interactive ) \ { \ int c = '*', n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL int yylex YY_PROTO(( void )) #endif /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 78 "/home/akim/src/a2ps-4.12/src/lexssh.l" #line 1282 "lex.yy.c" if ( yy_init ) { yy_init = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yy_start ) yy_start = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_load_buffer_state(); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = yy_c_buf_p; /* Support of yytext. */ *yy_cp = yy_hold_char; /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = yy_start; yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 901 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *yy_state_ptr++ = yy_current_state; ++yy_cp; } while ( yy_base[yy_current_state] != 1013 ); yy_find_action: yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) { yy_act = yy_acclist[yy_lp]; { yy_full_match = yy_cp; break; } } --yy_cp; yy_current_state = *--yy_state_ptr; yy_lp = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; if ( yy_act != YY_END_OF_BUFFER ) { int yyl; for ( yyl = 0; yyl < yyleng; ++yyl ) if ( yytext[yyl] == '\n' ) ++yylineno; } do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 1: YY_RULE_SETUP #line 80 "/home/akim/src/a2ps-4.12/src/lexssh.l" { ; } YY_BREAK case 2: YY_RULE_SETUP #line 81 "/home/akim/src/a2ps-4.12/src/lexssh.l" { ; } YY_BREAK case 3: YY_RULE_SETUP #line 83 "/home/akim/src/a2ps-4.12/src/lexssh.l" { BEGIN STATE_STRING; } YY_BREAK case 4: YY_RULE_SETUP #line 84 "/home/akim/src/a2ps-4.12/src/lexssh.l" { BEGIN STATE_REGEXP; } YY_BREAK case 5: YY_RULE_SETUP #line 86 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\042"); YY_BREAK case 6: YY_RULE_SETUP #line 87 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\044"); YY_BREAK case 7: YY_RULE_SETUP #line 88 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\047"); YY_BREAK case 8: YY_RULE_SETUP #line 89 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\100"); YY_BREAK case 9: YY_RULE_SETUP #line 90 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\101"); YY_BREAK case 10: YY_RULE_SETUP #line 91 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\102"); YY_BREAK case 11: YY_RULE_SETUP #line 92 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\103"); YY_BREAK case 12: YY_RULE_SETUP #line 93 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\104"); YY_BREAK case 13: YY_RULE_SETUP #line 94 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\105"); YY_BREAK case 14: YY_RULE_SETUP #line 95 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\106"); YY_BREAK case 15: YY_RULE_SETUP #line 96 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\107"); YY_BREAK case 16: YY_RULE_SETUP #line 97 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\110"); YY_BREAK case 17: YY_RULE_SETUP #line 98 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\111"); YY_BREAK case 18: YY_RULE_SETUP #line 99 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\112"); YY_BREAK case 19: YY_RULE_SETUP #line 100 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\113"); YY_BREAK case 20: YY_RULE_SETUP #line 101 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\114"); YY_BREAK case 21: YY_RULE_SETUP #line 102 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\115"); YY_BREAK case 22: YY_RULE_SETUP #line 103 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\116"); YY_BREAK case 23: YY_RULE_SETUP #line 104 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\117"); YY_BREAK case 24: YY_RULE_SETUP #line 105 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\120"); YY_BREAK case 25: YY_RULE_SETUP #line 106 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\121"); YY_BREAK case 26: YY_RULE_SETUP #line 107 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\122"); YY_BREAK case 27: YY_RULE_SETUP #line 108 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\123"); YY_BREAK case 28: YY_RULE_SETUP #line 109 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\124"); YY_BREAK case 29: YY_RULE_SETUP #line 110 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\125"); YY_BREAK case 30: YY_RULE_SETUP #line 111 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\126"); YY_BREAK case 31: YY_RULE_SETUP #line 112 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\127"); YY_BREAK case 32: YY_RULE_SETUP #line 113 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\130"); YY_BREAK case 33: YY_RULE_SETUP #line 114 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\131"); YY_BREAK case 34: YY_RULE_SETUP #line 115 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\132"); YY_BREAK case 35: YY_RULE_SETUP #line 116 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\134"); YY_BREAK case 36: YY_RULE_SETUP #line 117 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\136"); YY_BREAK case 37: YY_RULE_SETUP #line 118 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\140"); YY_BREAK case 38: YY_RULE_SETUP #line 119 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\141"); YY_BREAK case 39: YY_RULE_SETUP #line 120 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\142"); YY_BREAK case 40: YY_RULE_SETUP #line 121 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\143"); YY_BREAK case 41: YY_RULE_SETUP #line 122 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\144"); YY_BREAK case 42: YY_RULE_SETUP #line 123 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\145"); YY_BREAK case 43: YY_RULE_SETUP #line 124 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\146"); YY_BREAK case 44: YY_RULE_SETUP #line 125 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\147"); YY_BREAK case 45: YY_RULE_SETUP #line 126 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\150"); YY_BREAK case 46: YY_RULE_SETUP #line 127 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\151"); YY_BREAK case 47: YY_RULE_SETUP #line 128 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\152"); YY_BREAK case 48: YY_RULE_SETUP #line 129 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\153"); YY_BREAK case 49: YY_RULE_SETUP #line 130 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\154"); YY_BREAK case 50: YY_RULE_SETUP #line 131 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\155"); YY_BREAK case 51: YY_RULE_SETUP #line 132 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\156"); YY_BREAK case 52: YY_RULE_SETUP #line 133 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\157"); YY_BREAK case 53: YY_RULE_SETUP #line 134 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\160"); YY_BREAK case 54: YY_RULE_SETUP #line 135 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\161"); YY_BREAK case 55: YY_RULE_SETUP #line 136 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\162"); YY_BREAK case 56: YY_RULE_SETUP #line 137 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\163"); YY_BREAK case 57: YY_RULE_SETUP #line 138 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\164"); YY_BREAK case 58: YY_RULE_SETUP #line 139 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\165"); YY_BREAK case 59: YY_RULE_SETUP #line 140 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\166"); YY_BREAK case 60: YY_RULE_SETUP #line 141 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\167"); YY_BREAK case 61: YY_RULE_SETUP #line 142 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\170"); YY_BREAK case 62: YY_RULE_SETUP #line 143 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\171"); YY_BREAK case 63: YY_RULE_SETUP #line 144 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\172"); YY_BREAK case 64: YY_RULE_SETUP #line 145 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\176"); YY_BREAK case 65: YY_RULE_SETUP #line 146 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\241"); YY_BREAK case 66: YY_RULE_SETUP #line 147 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\242"); YY_BREAK case 67: YY_RULE_SETUP #line 148 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\243"); YY_BREAK case 68: YY_RULE_SETUP #line 149 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\245"); YY_BREAK case 69: YY_RULE_SETUP #line 150 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\246"); YY_BREAK case 70: YY_RULE_SETUP #line 151 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\247"); YY_BREAK case 71: YY_RULE_SETUP #line 152 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\250"); YY_BREAK case 72: YY_RULE_SETUP #line 153 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\251"); YY_BREAK case 73: YY_RULE_SETUP #line 154 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\252"); YY_BREAK case 74: YY_RULE_SETUP #line 155 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\253"); YY_BREAK case 75: YY_RULE_SETUP #line 156 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\254"); YY_BREAK case 76: YY_RULE_SETUP #line 157 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\255"); YY_BREAK case 77: YY_RULE_SETUP #line 158 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\256"); YY_BREAK case 78: YY_RULE_SETUP #line 159 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\257"); YY_BREAK case 79: YY_RULE_SETUP #line 160 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\260"); YY_BREAK case 80: YY_RULE_SETUP #line 161 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\261"); YY_BREAK case 81: YY_RULE_SETUP #line 162 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\263"); YY_BREAK case 82: YY_RULE_SETUP #line 163 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\264"); YY_BREAK case 83: YY_RULE_SETUP #line 164 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\265"); YY_BREAK case 84: YY_RULE_SETUP #line 165 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\266"); YY_BREAK case 85: YY_RULE_SETUP #line 166 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\267"); YY_BREAK case 86: YY_RULE_SETUP #line 167 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\270"); YY_BREAK case 87: YY_RULE_SETUP #line 168 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\271"); YY_BREAK case 88: YY_RULE_SETUP #line 169 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\272"); YY_BREAK case 89: YY_RULE_SETUP #line 170 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\273"); YY_BREAK case 90: YY_RULE_SETUP #line 171 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\274"); YY_BREAK case 91: YY_RULE_SETUP #line 172 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\276"); YY_BREAK case 92: YY_RULE_SETUP #line 173 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\277"); YY_BREAK case 93: YY_RULE_SETUP #line 174 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\300"); YY_BREAK case 94: YY_RULE_SETUP #line 175 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\301"); YY_BREAK case 95: YY_RULE_SETUP #line 176 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\302"); YY_BREAK case 96: YY_RULE_SETUP #line 177 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\303"); YY_BREAK case 97: YY_RULE_SETUP #line 178 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\304"); YY_BREAK case 98: YY_RULE_SETUP #line 179 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\305"); YY_BREAK case 99: YY_RULE_SETUP #line 180 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\306"); YY_BREAK case 100: YY_RULE_SETUP #line 181 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\307"); YY_BREAK case 101: YY_RULE_SETUP #line 182 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\310"); YY_BREAK case 102: YY_RULE_SETUP #line 183 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\311"); YY_BREAK case 103: YY_RULE_SETUP #line 184 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\312"); YY_BREAK case 104: YY_RULE_SETUP #line 185 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\313"); YY_BREAK case 105: YY_RULE_SETUP #line 186 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\314"); YY_BREAK case 106: YY_RULE_SETUP #line 187 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\315"); YY_BREAK case 107: YY_RULE_SETUP #line 188 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\316"); YY_BREAK case 108: YY_RULE_SETUP #line 189 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\317"); YY_BREAK case 109: YY_RULE_SETUP #line 190 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\320"); YY_BREAK case 110: YY_RULE_SETUP #line 191 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\321"); YY_BREAK case 111: YY_RULE_SETUP #line 192 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\322"); YY_BREAK case 112: YY_RULE_SETUP #line 193 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\324"); YY_BREAK case 113: YY_RULE_SETUP #line 194 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\324"); YY_BREAK case 114: YY_RULE_SETUP #line 195 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\325"); YY_BREAK case 115: YY_RULE_SETUP #line 196 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\326"); YY_BREAK case 116: YY_RULE_SETUP #line 197 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\327"); YY_BREAK case 117: YY_RULE_SETUP #line 198 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\330"); YY_BREAK case 118: YY_RULE_SETUP #line 199 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\331"); YY_BREAK case 119: YY_RULE_SETUP #line 200 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\332"); YY_BREAK case 120: YY_RULE_SETUP #line 201 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\333"); YY_BREAK case 121: YY_RULE_SETUP #line 202 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\334"); YY_BREAK case 122: YY_RULE_SETUP #line 203 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\335"); YY_BREAK case 123: YY_RULE_SETUP #line 204 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\336"); YY_BREAK case 124: YY_RULE_SETUP #line 205 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\337"); YY_BREAK case 125: YY_RULE_SETUP #line 206 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\340"); YY_BREAK case 126: YY_RULE_SETUP #line 207 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\341"); YY_BREAK case 127: YY_RULE_SETUP #line 208 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\342"); YY_BREAK case 128: YY_RULE_SETUP #line 209 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\342"); YY_BREAK case 129: YY_RULE_SETUP #line 210 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\344"); YY_BREAK case 130: YY_RULE_SETUP #line 211 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\345"); YY_BREAK case 131: YY_RULE_SETUP #line 212 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\351"); YY_BREAK case 132: YY_RULE_SETUP #line 213 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\353"); YY_BREAK case 133: YY_RULE_SETUP #line 214 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\361"); YY_BREAK case 134: YY_RULE_SETUP #line 215 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\362"); YY_BREAK case 135: YY_RULE_SETUP #line 216 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\371"); YY_BREAK case 136: YY_RULE_SETUP #line 217 "/home/akim/src/a2ps-4.12/src/lexssh.l" LATEX_SYM_RETURN ("\373"); YY_BREAK case 137: YY_RULE_SETUP #line 219 "/home/akim/src/a2ps-4.12/src/lexssh.l" { int value = yytext[1] - '0'; char *cursor = yytext + 2; while (*cursor) value = 8 * value + *cursor++ - '0'; yylval.integer = value; return tBACK_REF; } YY_BREAK case 138: YY_RULE_SETUP #line 229 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tA2PS; YY_BREAK case 139: YY_RULE_SETUP #line 230 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tALPHABET; YY_BREAK case 140: YY_RULE_SETUP #line 231 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tALPHABETS; YY_BREAK case 141: YY_RULE_SETUP #line 232 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tANCESTORS; YY_BREAK case 142: YY_RULE_SETUP #line 233 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tARE; YY_BREAK case 143: YY_RULE_SETUP #line 234 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tBY; YY_BREAK case 144: YY_RULE_SETUP #line 235 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tCASE; YY_BREAK case 145: YY_RULE_SETUP #line 236 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tCLOSERS; YY_BREAK case 146: YY_RULE_SETUP #line 237 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tCCHAR; YY_BREAK case 147: YY_RULE_SETUP #line 238 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tCSTRING; YY_BREAK case 148: YY_RULE_SETUP #line 239 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tDOCUMENTATION; YY_BREAK case 149: YY_RULE_SETUP #line 240 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tEND; YY_BREAK case 150: YY_RULE_SETUP #line 241 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tEXCEPTIONS; YY_BREAK case 151: YY_RULE_SETUP #line 242 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tFIRST; YY_BREAK case 152: YY_RULE_SETUP #line 243 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tIN; YY_BREAK case 153: YY_RULE_SETUP #line 244 "/home/akim/src/a2ps-4.12/src/lexssh.l" { yylval.sensitiveness = case_insensitive ; return tSENSITIVENESS; } YY_BREAK case 154: YY_RULE_SETUP #line 247 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tIS; YY_BREAK case 155: YY_RULE_SETUP #line 248 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tKEYWORDS; YY_BREAK case 156: YY_RULE_SETUP #line 249 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tREQUIRES; YY_BREAK case 157: YY_RULE_SETUP #line 250 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tSECOND; YY_BREAK case 158: YY_RULE_SETUP #line 251 "/home/akim/src/a2ps-4.12/src/lexssh.l" { yylval.sensitiveness = case_sensitive ; return tSENSITIVENESS; } YY_BREAK case 159: YY_RULE_SETUP #line 254 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tOPERATORS; YY_BREAK case 160: YY_RULE_SETUP #line 255 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tOPTIONAL; YY_BREAK case 161: YY_RULE_SETUP #line 256 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tSEQUENCES; YY_BREAK case 162: YY_RULE_SETUP #line 257 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tSTYLE; YY_BREAK case 163: YY_RULE_SETUP #line 258 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tVERSION; YY_BREAK case 164: YY_RULE_SETUP #line 259 "/home/akim/src/a2ps-4.12/src/lexssh.l" return tWRITTEN; YY_BREAK case 165: YY_RULE_SETUP #line 261 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (Plain) YY_BREAK case 166: YY_RULE_SETUP #line 262 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (Keyword) YY_BREAK case 167: YY_RULE_SETUP #line 263 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (Keyword_strong) YY_BREAK case 168: YY_RULE_SETUP #line 264 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (Error) YY_BREAK case 169: YY_RULE_SETUP #line 265 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (Label) YY_BREAK case 170: YY_RULE_SETUP #line 266 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (Label_strong) YY_BREAK case 171: YY_RULE_SETUP #line 267 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (String) YY_BREAK case 172: YY_RULE_SETUP #line 268 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FACE (Symbol) YY_BREAK case 173: YY_RULE_SETUP #line 269 "/home/akim/src/a2ps-4.12/src/lexssh.l" { /* Strip if required */ if ((strip_level == 1) || (strip_level == 3)) RETURN_FFLAGS (ff_Invisible) else RETURN_FACE (Comment) } YY_BREAK case 174: YY_RULE_SETUP #line 275 "/home/akim/src/a2ps-4.12/src/lexssh.l" { /* Strip if required */ if ((strip_level == 2) || (strip_level == 3)) RETURN_FFLAGS (ff_Invisible) else RETURN_FACE (Comment_strong) } YY_BREAK case 175: YY_RULE_SETUP #line 282 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Tag1) YY_BREAK case 176: YY_RULE_SETUP #line 283 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Tag2) YY_BREAK case 177: YY_RULE_SETUP #line 284 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Tag3) YY_BREAK case 178: YY_RULE_SETUP #line 285 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Tag4) YY_BREAK case 179: YY_RULE_SETUP #line 286 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Index1) YY_BREAK case 180: YY_RULE_SETUP #line 287 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Index2) YY_BREAK case 181: YY_RULE_SETUP #line 288 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Index3) YY_BREAK case 182: YY_RULE_SETUP #line 289 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Index4) YY_BREAK case 183: YY_RULE_SETUP #line 290 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Encoding) YY_BREAK case 184: YY_RULE_SETUP #line 291 "/home/akim/src/a2ps-4.12/src/lexssh.l" RETURN_FFLAGS (ff_Invisible) YY_BREAK case 185: YY_RULE_SETUP #line 293 "/home/akim/src/a2ps-4.12/src/lexssh.l" { yylval.string = xustrdup (yytext); return tSTRING; } YY_BREAK case 186: YY_RULE_SETUP #line 297 "/home/akim/src/a2ps-4.12/src/lexssh.l" { return yytext[0]; } YY_BREAK /* string of characters */ case 187: YY_RULE_SETUP #line 300 "/home/akim/src/a2ps-4.12/src/lexssh.l" { /* return the string */ uchar * string; obstack_1grow (&string_stack, '\0'); string = (uchar *) obstack_finish (&string_stack); obstack_free (&string_stack, string); BEGIN INITIAL; /* Return to the regular scanning */ yylval.string = xustrdup (string); return tSTRING; } YY_BREAK case 188: YY_RULE_SETUP #line 313 "/home/akim/src/a2ps-4.12/src/lexssh.l" { int value = yytext[1] - '0'; char *cursor = yytext + 2; while (*cursor) value = 8 * value + *cursor++ - '0'; obstack_1grow (&string_stack, value); } YY_BREAK case 189: YY_RULE_SETUP #line 322 "/home/akim/src/a2ps-4.12/src/lexssh.l" { int value = 0; char *cursor = yytext + 2; while (*cursor) if (*cursor >= 'a' && *cursor <= 'f') value = 16 * value + *cursor++ - 'a' + 10; else if (*cursor >= 'A' && *cursor <= 'F') value = 16 * value + *cursor++ - 'A' + 10; else value = 16 * value + *cursor++ - '0'; obstack_1grow (&string_stack, value); } YY_BREAK case 190: YY_RULE_SETUP #line 336 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\007'); } YY_BREAK case 191: YY_RULE_SETUP #line 337 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\b'); } YY_BREAK case 192: YY_RULE_SETUP #line 338 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, 127); } YY_BREAK case 193: YY_RULE_SETUP #line 339 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, 27); } YY_BREAK case 194: YY_RULE_SETUP #line 340 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\f'); } YY_BREAK case 195: YY_RULE_SETUP #line 341 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\n'); } YY_BREAK case 196: YY_RULE_SETUP #line 342 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\r'); } YY_BREAK case 197: YY_RULE_SETUP #line 343 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\t'); } YY_BREAK case 198: YY_RULE_SETUP #line 344 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\v'); } YY_BREAK case 199: YY_RULE_SETUP #line 345 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, yytext[1]); } YY_BREAK case 200: YY_RULE_SETUP #line 347 "/home/akim/src/a2ps-4.12/src/lexssh.l" { yyerror (_("end-of-line in string constant")); } YY_BREAK case 201: YY_RULE_SETUP #line 351 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_grow (&string_stack, yytext, yyleng); } YY_BREAK /* a regular expression */ case 202: YY_RULE_SETUP #line 357 "/home/akim/src/a2ps-4.12/src/lexssh.l" { /* return the string */ char * pattern; int pattern_len; /* I'm not sure I got the 0 terminate the pattern */ obstack_1grow (&string_stack, '\0'); pattern_len = obstack_object_size (&string_stack); pattern = (char *) obstack_finish (&string_stack); obstack_free (&string_stack, pattern); yylval.pattern = XMALLOC (struct pattern, 1); /* len - 1, because the NUL must not be part of the pattern that * will be compiled. We put tough, to be able to use the pattern * in regular C strings manipulations. */ yylval.pattern->len = pattern_len - 1; yylval.pattern->pattern = XMALLOC (char, pattern_len); memcpy (yylval.pattern->pattern, pattern, pattern_len); BEGIN INITIAL; /* Return to the regular scanning */ return tREGEX; } YY_BREAK case 203: YY_RULE_SETUP #line 379 "/home/akim/src/a2ps-4.12/src/lexssh.l" { int value = yytext[1] - '0'; char *cursor = yytext + 2; while (*cursor) value = 8 * value + *cursor++ - '0'; obstack_1grow (&string_stack, value); } YY_BREAK case 204: YY_RULE_SETUP #line 388 "/home/akim/src/a2ps-4.12/src/lexssh.l" { int value = 0; char *cursor = yytext + 2; while (*cursor) if (*cursor >= 'a' && *cursor <= 'f') value = 16 * value + *cursor++ - 'a' + 10; else if (*cursor >= 'A' && *cursor <= 'F') value = 16 * value + *cursor++ - 'A' + 10; else value = 16 * value + *cursor++ - '0'; obstack_1grow (&string_stack, value); } YY_BREAK case 205: YY_RULE_SETUP #line 402 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\007'); } YY_BREAK case 206: YY_RULE_SETUP #line 403 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\b'); } YY_BREAK case 207: YY_RULE_SETUP #line 404 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, 127); } YY_BREAK case 208: YY_RULE_SETUP #line 405 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, 27); } YY_BREAK case 209: YY_RULE_SETUP #line 406 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\f'); } YY_BREAK case 210: YY_RULE_SETUP #line 407 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\n'); } YY_BREAK case 211: YY_RULE_SETUP #line 408 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\r'); } YY_BREAK case 212: YY_RULE_SETUP #line 409 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\t'); } YY_BREAK case 213: YY_RULE_SETUP #line 410 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, '\v'); } YY_BREAK case 214: YY_RULE_SETUP #line 411 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_1grow (&string_stack, yytext[1]); } YY_BREAK case 215: YY_RULE_SETUP #line 413 "/home/akim/src/a2ps-4.12/src/lexssh.l" { error_at_line (1, 0, sshfilename, sshlineno, _("end of line inside a %s"), "\"..\""); } YY_BREAK case 216: YY_RULE_SETUP #line 418 "/home/akim/src/a2ps-4.12/src/lexssh.l" { obstack_grow (&string_stack, yytext, yyleng); } YY_BREAK case 217: YY_RULE_SETUP #line 423 "/home/akim/src/a2ps-4.12/src/lexssh.l" ECHO; YY_BREAK #line 2564 "lex.yy.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(STATE_STRING): case YY_STATE_EOF(STATE_REGEXP): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yy_hold_char; YY_RESTORE_YY_MORE_OFFSET if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between yy_current_buffer and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ yy_n_chars = yy_current_buffer->yy_n_chars; yy_current_buffer->yy_input_file = yyin; yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] ) { /* This was really a NUL. */ yy_state_type yy_next_state; yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = yytext_ptr + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++yy_c_buf_p; yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = yy_c_buf_p; goto yy_find_action; } } else switch ( yy_get_next_buffer() ) { case EOB_ACT_END_OF_FILE: { yy_did_buffer_switch_on_eof = 0; if ( yywrap() ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: yy_c_buf_p = &yy_current_buffer->yy_ch_buf[yy_n_chars]; yy_current_state = yy_get_previous_state(); yy_cp = yy_c_buf_p; yy_bp = yytext_ptr + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer() { register char *dest = yy_current_buffer->yy_ch_buf; register char *source = yytext_ptr; register int number_to_move, i; int ret_val; if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( yy_current_buffer->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ yy_current_buffer->yy_n_chars = yy_n_chars = 0; else { int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ #ifdef YY_USES_REJECT YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); #else /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = yy_current_buffer; int yy_c_buf_p_offset = (int) (yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yy_flex_realloc( (void *) b->yy_ch_buf, b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; #endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), yy_n_chars, num_to_read ); yy_current_buffer->yy_n_chars = yy_n_chars; } if ( yy_n_chars == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; yy_current_buffer->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; yy_n_chars += number_to_move; yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state() { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = yy_start; yy_state_ptr = yy_state_buf; *yy_state_ptr++ = yy_current_state; for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 901 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *yy_state_ptr++ = yy_current_state; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ #ifdef YY_USE_PROTOS static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) #else static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { register int yy_is_jam; register YY_CHAR yy_c = 1; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 901 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 900); if ( ! yy_is_jam ) *yy_state_ptr++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS static void yyunput( int c, register char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; register char *yy_bp; #endif { register char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yy_n_chars + 2; register char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; register char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); yy_current_buffer->yy_n_chars = yy_n_chars = yy_current_buffer->yy_buf_size; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; if ( c == '\n' ) --yylineno; yytext_ptr = yy_bp; yy_hold_char = *yy_cp; yy_c_buf_p = yy_cp; } #endif /* ifndef YY_NO_UNPUT */ #ifdef __cplusplus static int yyinput() #else static int input() #endif { int c; *yy_c_buf_p = yy_hold_char; if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] ) /* This was really a NUL. */ *yy_c_buf_p = '\0'; else { /* need more input */ int offset = yy_c_buf_p - yytext_ptr; ++yy_c_buf_p; switch ( yy_get_next_buffer() ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /* fall through */ case EOB_ACT_END_OF_FILE: { if ( yywrap() ) return EOF; if ( ! yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: yy_c_buf_p = yytext_ptr + offset; break; } } } c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ *yy_c_buf_p = '\0'; /* preserve yytext */ yy_hold_char = *++yy_c_buf_p; if ( c == '\n' ) ++yylineno; return c; } #ifdef YY_USE_PROTOS void yyrestart( FILE *input_file ) #else void yyrestart( input_file ) FILE *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_init_buffer( yy_current_buffer, input_file ); yy_load_buffer_state(); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) #else void yy_switch_to_buffer( new_buffer ) YY_BUFFER_STATE new_buffer; #endif { if ( yy_current_buffer == new_buffer ) return; if ( yy_current_buffer ) { /* Flush out information for old buffer. */ *yy_c_buf_p = yy_hold_char; yy_current_buffer->yy_buf_pos = yy_c_buf_p; yy_current_buffer->yy_n_chars = yy_n_chars; } yy_current_buffer = new_buffer; yy_load_buffer_state(); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ yy_did_buffer_switch_on_eof = 1; } #ifdef YY_USE_PROTOS void yy_load_buffer_state( void ) #else void yy_load_buffer_state() #endif { yy_n_chars = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; yyin = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) #else YY_BUFFER_STATE yy_create_buffer( file, size ) FILE *file; int size; #endif { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer( b, file ); return b; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b ) #else void yy_delete_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; if ( b == yy_current_buffer ) yy_current_buffer = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yy_flex_free( (void *) b->yy_ch_buf ); yy_flex_free( (void *) b ); } #ifndef YY_ALWAYS_INTERACTIVE #ifndef YY_NEVER_INTERACTIVE extern int isatty YY_PROTO(( int )); #endif #endif #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) #else void yy_init_buffer( b, file ) YY_BUFFER_STATE b; FILE *file; #endif { yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; #if YY_ALWAYS_INTERACTIVE b->yy_is_interactive = 1; #else #if YY_NEVER_INTERACTIVE b->yy_is_interactive = 0; #else b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b ) #else void yy_flush_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == yy_current_buffer ) yy_load_buffer_state(); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) #else YY_BUFFER_STATE yy_scan_buffer( base, size ) char *base; yy_size_t size; #endif { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) #else YY_BUFFER_STATE yy_scan_string( yy_str ) yyconst char *yy_str; #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len ) yyconst char *bytes; int len; #endif { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = len + 2; buf = (char *) yy_flex_alloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < len; ++i ) buf[i] = bytes[i]; buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #endif #ifndef YY_NO_PUSH_STATE #ifdef YY_USE_PROTOS static void yy_push_state( int new_state ) #else static void yy_push_state( new_state ) int new_state; #endif { if ( yy_start_stack_ptr >= yy_start_stack_depth ) { yy_size_t new_size; yy_start_stack_depth += YY_START_STACK_INCR; new_size = yy_start_stack_depth * sizeof( int ); if ( ! yy_start_stack ) yy_start_stack = (int *) yy_flex_alloc( new_size ); else yy_start_stack = (int *) yy_flex_realloc( (void *) yy_start_stack, new_size ); if ( ! yy_start_stack ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } yy_start_stack[yy_start_stack_ptr++] = YY_START; BEGIN(new_state); } #endif #ifndef YY_NO_POP_STATE static void yy_pop_state() { if ( --yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yy_start_stack[yy_start_stack_ptr]); } #endif #ifndef YY_NO_TOP_STATE static int yy_top_state() { return yy_start_stack[yy_start_stack_ptr - 1]; } #endif #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif #ifdef YY_USE_PROTOS static void yy_fatal_error( yyconst char msg[] ) #else static void yy_fatal_error( msg ) char msg[]; #endif { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yytext[yyleng] = yy_hold_char; \ yy_c_buf_p = yytext + n; \ yy_hold_char = *yy_c_buf_p; \ *yy_c_buf_p = '\0'; \ yyleng = n; \ } \ while ( 0 ) /* Internal utility routines. */ #ifndef yytext_ptr #ifdef YY_USE_PROTOS static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) #else static void yy_flex_strncpy( s1, s2, n ) char *s1; yyconst char *s2; int n; #endif { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN #ifdef YY_USE_PROTOS static int yy_flex_strlen( yyconst char *s ) #else static int yy_flex_strlen( s ) yyconst char *s; #endif { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif #ifdef YY_USE_PROTOS static void *yy_flex_alloc( yy_size_t size ) #else static void *yy_flex_alloc( size ) yy_size_t size; #endif { return (void *) malloc( size ); } #ifdef YY_USE_PROTOS static void *yy_flex_realloc( void *ptr, yy_size_t size ) #else static void *yy_flex_realloc( ptr, size ) void *ptr; yy_size_t size; #endif { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } #ifdef YY_USE_PROTOS static void yy_flex_free( void *ptr ) #else static void yy_flex_free( ptr ) void *ptr; #endif { free( ptr ); } #if YY_MAIN int main() { yylex(); return 0; } #endif #line 423 "/home/akim/src/a2ps-4.12/src/lexssh.l" int yywrap (void) { return 1; } /* * Initialize the obstacks */ void sshlex_initialize (void) { static int first_time = 1; if (first_time) { first_time = 0; obstack_init (&string_stack); } }