1 /* A lexical scanner generated by flex */
3 /* scanner skeleton version:
4 * $Header: flex.skel,v 2.13 90/05/26 17:24:13 ve
13 #ifndef DONT_HAVE_STDLIB_H
16 void *malloc( unsigned );
25 /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
41 /* use prototypes in function declarations */
44 /* the "const" storage-class-modifier is valid */
61 #define YY_PROTO(proto) proto
63 #define YY_PROTO(proto) ()
64 /* there's no standard place to get these definitions */
71 /* amount of stuff to slurp up with each read */
72 #ifndef YY_READ_BUF_SIZE
73 #define YY_READ_BUF_SIZE 8192
76 /* returned upon end-of-file */
79 /* copy whatever the last rule matched to the standard output */
81 /* cast to (char *) is because for 8-bit chars, yytext is (unsigned char *) */
82 /* this used to be an fputs(), but since the string might contain NUL's,
85 #define ECHO (void) fwrite( (char *) yytext, yyleng, 1, yyout )
87 /* gets input and stuffs it into "buf". number of characters read, or YY_NULL,
88 * is returned in "result".
90 #define YY_INPUT(buf,result,max_size) \
91 if ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
92 YY_FATAL_ERROR( "read() in flex scanner failed" );
95 /* no semi-colon after return; correct usage is to write "yyterminate();" -
96 * we don't want an extra ';' after the "return" because that will cause
97 * some compilers to complain about unreachable statements.
99 #define yyterminate() return ( YY_NULL )
101 /* report a fatal error */
103 /* The funky do-while is used to turn this macro definition into
104 * a single C statement (which needs a semi-colon terminator).
105 * This avoids problems with code like:
107 * if ( something_happens )
108 * YY_FATAL_ERROR( "oops, the something happened" );
112 * Prior to using the do-while the compiler would get upset at the
113 * "else" because it interpreted the "if" statement as being all
114 * done when it reached the ';' after the YY_FATAL_ERROR() call.
117 #define YY_FATAL_ERROR(msg) \
120 (void) fputs( msg, stderr ); \
121 (void) putc( '\n', stderr ); \
126 /* default yywrap function - always treat EOF as an EOF */
129 /* enter a start condition. This macro really ought to take a parameter,
130 * but we do it the disgusting crufty way forced on us by the ()-less
131 * definition of BEGIN
133 #define BEGIN yy_start = 1 + 2 *
135 /* action number for EOF rule of a given start state */
136 #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
138 /* special action meaning "start processing a new file" */
139 #define YY_NEW_FILE \
142 yyinbffr( yy_current_buffer, yyin ); \
147 /* default declaration of generated scanner - a define so the user can
148 * easily add parameters
150 #define YY_DECL int yylex YY_PROTO(( void ))
152 /* code executed at the end of each rule */
153 #define YY_BREAK break;
155 #define YY_END_OF_BUFFER_CHAR 0
158 #define YY_BUF_SIZE (YY_READ_BUF_SIZE * 2) /* size of default input buffer */
161 typedef struct yy_buffer_state
*YY_BUFFER_STATE
;
163 #define YY_CHAR unsigned char
166 /* scan.l - scanner for flex input */
169 * Copyright (c) 1990 The Regents of the University of California.
170 * All rights reserved.
172 * This code is derived from software contributed to Berkeley by
175 * The United States Government has rights in this work pursuant
176 * to contract no. DE-AC03-76SF00098 between the United States
177 * Department of Energy and the University of California.
179 * Redistribution and use in source and binary forms with or without
180 * modification are permitted provided that: (1) source distributions retain
181 * this entire copyright notice and comment, and (2) distributions including
182 * binaries display the following acknowledgement: ``This product includes
183 * software developed by the University of California, Berkeley and its
184 * contributors'' in the documentation or other materials provided with the
185 * distribution and in all advertising materials mentioning features or use
186 * of this software. Neither the name of the University nor the names of
187 * its contributors may be used to endorse or promote products derived from
188 * this software without specific prior written permission.
189 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
190 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
191 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
195 static char rcsid
[] =
196 "@(#) $Header$ (LBL)";
204 #define ACTION_ECHO fprintf( tmpactfl, "%s", yytext )
205 #define MARK_END_OF_PROLOG fprintf( tmpactfl, "%%%% end of prolog\n" );
212 yylval = yytext[0]; \
216 (void) strcpy( nmstr, (char *) yytext ); \
219 #define PUT_BACK_STRING(str, start) \
220 for ( i = strlen( (char *) (str) ) - 1; i >= start; --i ) \
223 #define CHECK_REJECT(str) \
224 if ( allupper( str ) ) \
227 #define CHECK_YYMORE(str) \
228 if ( alllower( str ) ) \
231 #define SECT2PROLOG 2
243 #define BRACEERROR 14
245 #define ACTION_COMMENT 16
246 #define ACTION_STRING 17
247 #define PERCENT_BRACE_ACTION 18
249 #define CODEBLOCK_2 20
253 /* done after the current pattern has been matched and before the
254 * corresponding action - sets up yytext
256 #define YY_DO_BEFORE_ACTION \
258 yyleng = yy_cp - yy_bp; \
259 yy_hold_char = *yy_cp; \
263 #define EOB_ACT_CONTINUE_SCAN 0
264 #define EOB_ACT_END_OF_FILE 1
265 #define EOB_ACT_LAST_MATCH 2
267 /* return all but the first 'n' matched characters back to the input stream */
271 /* undo effects of setting up yytext */ \
272 *yy_cp = yy_hold_char; \
273 yy_c_buf_p = yy_cp = yy_bp + n; \
274 YY_DO_BEFORE_ACTION; /* set up yytext again */ \
278 #define unput(c) yyunput( c, yytext )
281 struct yy_buffer_state
285 YY_CHAR
*yy_ch_buf
; /* input buffer */
286 YY_CHAR
*yy_buf_pos
; /* current position in input buffer */
288 /* size of input buffer in bytes, not including room for EOB characters*/
291 /* number of characters read into yy_ch_buf, not including EOB characters */
294 int yy_eof_status
; /* whether we've seen an EOF on this buffer */
295 #define EOF_NOT_SEEN 0
296 /* "pending" happens when the EOF has been seen but there's still
299 #define EOF_PENDING 1
303 static YY_BUFFER_STATE yy_current_buffer
;
305 /* we provide macros for accessing buffer states in case in the
306 * future we want to put the buffer states in a more general
309 #define YY_CURRENT_BUFFER yy_current_buffer
312 /* yy_hold_char holds the character lost when yytext is formed */
313 static YY_CHAR yy_hold_char
;
315 static int yy_n_chars
; /* number of characters read into yy_ch_buf */
319 #ifndef YY_USER_ACTION
320 #define YY_USER_ACTION
327 extern YY_CHAR
*yytext
;
329 extern FILE *yyin
, *yyout
;
334 FILE *yyin
= (FILE *) 0, *yyout
= (FILE *) 0;
336 #define YY_END_OF_BUFFER 121
337 typedef int yy_ste_type
;
338 static const short int yy_accept
[341] =
340 0, 0, 0, 0, 0, 0, 119, 119, 0, 0,
341 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
342 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
343 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
344 0, 0, 0, 0, 121, 19, 7, 18, 19, 16,
345 1, 17, 19, 19, 15, 19, 67, 59, 60, 66,
346 51, 67, 53, 67, 67, 67, 50, 49, 52, 67,
347 120, 47, 119, 119, 28, 29, 28, 28, 28, 28,
348 31, 30, 32, 73, 120, 69, 72, 70, 74, 88,
349 89, 86, 87, 85, 75, 77, 76, 75, 81, 81,
351 80, 81, 83, 83, 84, 83, 99, 104, 105, 100,
352 105, 103, 100, 100, 97, 98, 120, 33, 91, 90,
353 22, 24, 23, 107, 109, 108, 111, 113, 114, 115,
354 95, 95, 96, 95, 95, 95, 95, 38, 35, 34,
355 38, 38, 44, 42, 45, 44, 44, 41, 41, 41,
356 41, 40, 7, 18, 0, 16, 1, 17, 3, 14,
357 8, 0, 12, 4, 0, 0, 5, 0, 15, 0,
358 2, 59, 60, 0, 0, 0, 56, 0, 0, 55,
359 55, 54, 117, 117, 117, 50, 49, 63, 50, 0,
360 47, 46, 119, 119, 28, 28, 28, 28, 28, 31,
362 30, 72, 71, 85, 78, 79, 118, 118, 118, 82,
363 99, 101, 100, 0, 102, 0, 100, 100, 0, 33,
364 22, 20, 107, 106, 111, 112, 95, 95, 95, 92,
365 95, 95, 95, 38, 35, 38, 38, 42, 0, 43,
366 43, 43, 42, 40, 0, 13, 14, 8, 8, 0,
367 12, 4, 0, 0, 0, 5, 0, 6, 0, 58,
368 57, 0, 64, 0, 0, 55, 55, 65, 117, 117,
369 63, 28, 28, 28, 25, 0, 118, 118, 100, 100,
370 0, 21, 92, 92, 95, 95, 38, 38, 0, 39,
371 43, 43, 0, 11, 4, 0, 11, 0, 0, 5,
373 0, 0, 0, 117, 28, 28, 118, 100, 100, 95,
374 95, 38, 38, 43, 0, 9, 0, 0, 0, 28,
375 28, 100, 100, 95, 95, 38, 38, 0, 0, 26,
376 27, 93, 94, 93, 94, 36, 37, 10, 62, 0
379 static const YY_CHAR yy_ec
[256] =
381 1, 1, 1, 1, 2, 1, 1, 1, 1, 1,
382 1, 3, 1, 1, 1, 1, 1, 1, 1, 1,
383 4, 1, 1, 1, 1, 1, 1, 1, 1, 1,
384 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
385 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
386 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
387 1, 1, 1, 5, 1, 1, 1, 1, 1, 1,
388 1, 1, 1, 1, 6, 7, 6, 6, 8, 1,
389 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
390 9, 10, 6, 1, 11, 12, 13, 1, 1, 1,
392 1, 1, 1, 1, 1, 1, 14, 15, 16, 17,
393 6, 1, 1, 1, 1, 1, 1, 1, 1, 1,
394 1, 1, 18, 1, 19, 1, 20, 1, 21, 22,
395 23, 24, 25, 26, 16, 16, 16, 16, 16, 16,
396 16, 16, 16, 16, 27, 28, 16, 29, 30, 31,
397 28, 16, 32, 16, 16, 16, 16, 16, 16, 16,
398 16, 33, 34, 35, 16, 16, 36, 37, 16, 1,
399 1, 1, 38, 1, 1, 1, 1, 1, 1, 1,
400 1, 1, 1, 1, 1, 1, 1, 1, 39, 1,
401 1, 40, 21, 22, 23, 24, 25, 26, 16, 16,
403 16, 1, 1, 1, 1, 1, 1, 41, 27, 28,
404 16, 29, 30, 31, 28, 16, 32, 1, 1, 1,
405 1, 1, 1, 42, 1, 33, 34, 35, 16, 16,
406 36, 37, 16, 1, 1, 1, 1, 1, 1, 43,
407 43, 43, 43, 43, 43, 43, 43, 43, 43, 1,
411 static const short int yy_base
[404] =
413 0, 43, 85, 126, 1573, 1572, 1571, 1570, 168, 1558,
414 97, 104, 211, 0, 1544, 1543, 99, 106, 118, 251,
415 252, 254, 112, 114, 296, 0, 1549, 1548, 107, 111,
416 140, 151, 153, 155, 253, 336, 378, 0, 339, 420,
417 0, 0, 424, 465, 1550, 3243, 257, 3243, 1515, 0,
418 265, 3243, 1538, 494, 0, 1540, 3243, 272, 3243, 3243,
419 1495, 277, 3243, 1459, 534, 61, 343, 3243, 3243, 81,
420 1496, 0, 1495, 3243, 0, 3243, 0, 1473, 1443, 1438,
421 0, 281, 3243, 3243, 3243, 3243, 0, 1467, 3243, 3243,
422 3243, 3243, 3243, 1434, 3243, 3243, 3243, 76, 3243, 1463,
424 3243, 242, 3243, 0, 3243, 314, 0, 3243, 1464, 0,
425 330, 3243, 1448, 745, 3243, 3243, 777, 3243, 3243, 3243,
426 0, 3243, 767, 0, 3243, 766, 0, 3243, 3243, 0,
427 0, 350, 3243, 737, 0, 752, 739, 0, 286, 3243,
428 750, 737, 3243, 357, 3243, 739, 318, 3243, 428, 738,
429 327, 728, 364, 3243, 432, 0, 438, 3243, 3243, 372,
430 442, 765, 446, 0, 451, 84, 0, 765, 0, 764,
431 3243, 457, 3243, 763, 718, 732, 3243, 434, 438, 0,
432 566, 3243, 3243, 0, 712, 480, 3243, 0, 3243, 750,
433 0, 3243, 749, 3243, 0, 0, 725, 722, 609, 0,
435 484, 0, 3243, 707, 3243, 3243, 3243, 0, 706, 3243,
436 0, 3243, 0, 456, 3243, 0, 721, 718, 742, 3243,
437 0, 741, 0, 3243, 0, 3243, 0, 488, 703, 652,
438 0, 709, 706, 0, 494, 707, 704, 499, 508, 3243,
439 0, 689, 694, 688, 581, 3243, 518, 0, 603, 725,
440 698, 0, 702, 693, 697, 0, 706, 3243, 705, 3243,
441 3243, 671, 3243, 717, 669, 0, 0, 3243, 0, 655,
442 0, 631, 573, 0, 3243, 577, 0, 537, 554, 507,
443 529, 3243, 0, 0, 507, 500, 493, 485, 711, 3243,
444 0, 471, 502, 3243, 0, 715, 3243, 472, 476, 0,
446 468, 740, 682, 3243, 469, 447, 3243, 455, 432, 440,
447 426, 427, 414, 3243, 413, 3243, 415, 684, 688, 339,
448 339, 258, 265, 238, 142, 128, 133, 121, 126, 0,
449 0, 0, 0, 0, 0, 0, 0, 3243, 3243, 3243,
450 783, 826, 869, 912, 955, 998, 1041, 1084, 1127, 1170,
451 1213, 1256, 1299, 1342, 1385, 1428, 1460, 1503, 1535, 1578,
452 1621, 1664, 1707, 1750, 1793, 1836, 1868, 1911, 1943, 1986,
453 2029, 2072, 2115, 2147, 2190, 2233, 2276, 2319, 2362, 2405,
454 2448, 2480, 2523, 2566, 2609, 2637, 2659, 2696, 2739, 2782,
455 2805, 2848, 2871, 2914, 2937, 2980, 3012, 3044, 3067, 3110,
460 static const short int yy_def
[404] =
462 340, 340, 341, 341, 342, 342, 343, 343, 340, 9,
463 344, 344, 340, 13, 345, 345, 346, 346, 347, 347,
464 348, 348, 349, 349, 340, 25, 350, 350, 345, 345,
465 351, 351, 352, 352, 353, 353, 340, 37, 354, 354,
466 37, 37, 355, 356, 340, 340, 340, 340, 340, 357,
467 340, 340, 340, 358, 359, 360, 340, 340, 340, 340,
468 340, 340, 340, 361, 340, 362, 340, 340, 340, 340,
469 363, 364, 365, 340, 366, 340, 367, 367, 367, 366,
470 368, 340, 340, 340, 340, 340, 369, 340, 340, 340,
471 340, 340, 340, 340, 340, 340, 340, 362, 340, 370,
473 340, 371, 340, 372, 340, 362, 373, 340, 340, 374,
474 375, 340, 374, 374, 340, 340, 376, 340, 340, 340,
475 377, 340, 340, 378, 340, 340, 379, 340, 340, 380,
476 381, 381, 340, 381, 382, 382, 382, 383, 340, 340,
477 383, 383, 340, 340, 340, 340, 384, 340, 340, 340,
478 384, 340, 340, 340, 340, 357, 340, 340, 340, 340,
479 385, 340, 340, 386, 340, 340, 387, 388, 359, 360,
480 340, 340, 340, 389, 340, 340, 340, 361, 361, 390,
481 390, 340, 340, 391, 340, 340, 340, 392, 340, 363,
482 364, 340, 365, 340, 366, 367, 367, 367, 340, 368,
484 340, 369, 340, 340, 340, 340, 340, 393, 340, 340,
485 373, 340, 374, 375, 340, 375, 374, 374, 376, 340,
486 377, 394, 378, 340, 379, 340, 381, 381, 381, 340,
487 382, 382, 382, 383, 340, 383, 383, 340, 340, 340,
488 395, 340, 340, 340, 340, 340, 340, 385, 385, 396,
489 340, 397, 396, 340, 340, 398, 388, 340, 389, 340,
490 340, 340, 340, 361, 361, 390, 181, 340, 399, 340,
491 392, 367, 367, 199, 340, 400, 401, 340, 374, 374,
492 394, 340, 230, 402, 382, 382, 383, 383, 340, 340,
493 403, 340, 396, 340, 397, 396, 340, 340, 340, 398,
495 340, 264, 361, 340, 367, 367, 340, 374, 374, 382,
496 382, 383, 383, 340, 340, 340, 340, 361, 361, 367,
497 367, 374, 374, 382, 382, 383, 383, 340, 340, 367,
498 367, 374, 374, 382, 382, 383, 383, 340, 340, 0,
499 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
500 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
501 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
502 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
503 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
504 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
509 static const short int yy_nxt
[3287] =
511 46, 47, 47, 48, 47, 46, 46, 46, 46, 46,
512 46, 46, 46, 46, 49, 50, 46, 46, 46, 46,
513 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
514 50, 50, 50, 50, 50, 50, 50, 46, 46, 46,
515 46, 46, 46, 46, 51, 51, 52, 51, 46, 46,
516 46, 46, 46, 46, 46, 53, 46, 54, 55, 46,
517 56, 46, 46, 55, 55, 55, 55, 55, 55, 55,
518 55, 55, 55, 55, 55, 55, 55, 55, 55, 55,
519 46, 46, 46, 46, 46, 46, 58, 58, 59, 58,
520 60, 61, 60, 62, 60, 188, 184, 60, 82, 82,
522 83, 82, 91, 185, 63, 82, 82, 83, 82, 91,
523 119, 184, 92, 254, 119, 85, 255, 85, 185, 92,
524 189, 96, 64, 104, 65, 104, 66, 67, 67, 68,
525 67, 60, 61, 60, 62, 60, 69, 97, 60, 93,
526 70, 94, 339, 122, 338, 63, 93, 120, 94, 123,
527 105, 120, 105, 106, 122, 106, 125, 337, 125, 98,
528 123, 336, 126, 64, 126, 65, 335, 66, 75, 75,
529 75, 76, 75, 75, 75, 75, 75, 75, 75, 75,
530 75, 75, 75, 77, 75, 75, 75, 75, 77, 77,
531 77, 77, 77, 77, 77, 77, 77, 77, 77, 78,
533 77, 77, 77, 77, 79, 75, 75, 75, 75, 75,
534 75, 84, 84, 84, 85, 84, 84, 84, 84, 84,
535 84, 84, 84, 84, 86, 84, 87, 88, 84, 84,
536 84, 87, 87, 87, 87, 87, 87, 87, 87, 87,
537 87, 87, 87, 87, 87, 87, 87, 87, 84, 84,
538 84, 84, 84, 84, 96, 85, 128, 85, 153, 153,
539 154, 153, 100, 101, 100, 101, 157, 157, 158, 157,
540 97, 334, 129, 172, 172, 173, 172, 208, 177, 174,
541 177, 177, 201, 201, 209, 201, 175, 235, 235, 333,
542 235, 332, 98, 102, 130, 102, 107, 107, 107, 108,
544 107, 107, 107, 107, 107, 107, 107, 107, 109, 107,
545 107, 110, 107, 107, 111, 112, 110, 110, 110, 110,
546 110, 110, 110, 110, 110, 110, 110, 113, 110, 110,
547 110, 110, 114, 107, 107, 115, 116, 107, 107, 128,
548 139, 139, 140, 139, 186, 186, 187, 186, 215, 184,
549 174, 228, 228, 241, 228, 129, 185, 175, 238, 238,
550 242, 238, 241, 331, 229, 153, 153, 154, 153, 242,
551 141, 216, 330, 247, 247, 142, 247, 130, 131, 132,
552 132, 133, 132, 131, 131, 131, 131, 131, 131, 131,
553 131, 131, 134, 135, 131, 131, 131, 131, 135, 135,
555 135, 135, 135, 135, 135, 135, 135, 135, 135, 136,
556 135, 135, 135, 135, 137, 131, 131, 131, 131, 131,
557 131, 139, 139, 140, 139, 144, 144, 145, 144, 243,
558 243, 329, 243, 245, 245, 246, 245, 328, 146, 157,
559 157, 158, 157, 249, 249, 327, 249, 251, 251, 326,
560 251, 141, 245, 245, 246, 253, 142, 325, 172, 172,
561 173, 172, 324, 323, 174, 147, 149, 149, 145, 149,
562 244, 175, 263, 264, 215, 179, 178, 322, 321, 150,
563 265, 186, 186, 187, 186, 201, 201, 174, 201, 228,
564 228, 320, 228, 317, 175, 235, 235, 216, 235, 316,
566 238, 238, 229, 238, 315, 294, 151, 152, 161, 289,
567 289, 290, 289, 240, 162, 313, 163, 312, 162, 247,
568 247, 162, 247, 162, 162, 163, 164, 165, 166, 167,
569 311, 310, 282, 168, 180, 180, 180, 309, 180, 180,
570 180, 180, 180, 180, 180, 180, 180, 180, 180, 181,
571 180, 180, 180, 180, 181, 181, 181, 181, 181, 181,
572 181, 181, 181, 181, 181, 181, 181, 181, 181, 181,
573 181, 180, 180, 180, 180, 180, 182, 267, 308, 207,
574 275, 267, 245, 245, 246, 245, 267, 267, 267, 267,
575 267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
577 267, 267, 267, 306, 249, 249, 268, 249, 267, 274,
578 274, 274, 275, 274, 274, 274, 274, 274, 274, 274,
579 274, 274, 274, 274, 276, 274, 274, 274, 274, 276,
580 276, 276, 276, 276, 276, 276, 276, 276, 276, 276,
581 276, 276, 276, 276, 276, 276, 274, 274, 274, 274,
582 274, 274, 283, 283, 283, 305, 283, 283, 283, 283,
583 283, 283, 283, 283, 283, 283, 283, 284, 283, 283,
584 283, 283, 284, 284, 284, 284, 284, 284, 284, 284,
585 284, 284, 284, 284, 284, 284, 284, 284, 284, 283,
586 283, 283, 283, 283, 283, 243, 243, 183, 243, 251,
588 251, 301, 251, 296, 296, 297, 296, 263, 260, 258,
589 179, 303, 289, 289, 290, 289, 296, 296, 297, 296,
590 263, 299, 263, 179, 319, 179, 263, 298, 294, 179,
591 244, 292, 288, 287, 286, 285, 244, 302, 302, 302,
592 302, 302, 302, 230, 282, 220, 280, 279, 278, 204,
593 273, 272, 194, 191, 270, 263, 262, 261, 179, 302,
594 318, 318, 318, 318, 318, 318, 260, 171, 258, 250,
595 244, 239, 239, 237, 236, 233, 232, 230, 224, 222,
596 220, 218, 318, 57, 57, 57, 57, 57, 57, 57,
597 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
599 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
600 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
601 57, 57, 57, 57, 57, 57, 71, 71, 71, 71,
602 71, 71, 71, 71, 71, 71, 71, 71, 71, 71,
603 71, 71, 71, 71, 71, 71, 71, 71, 71, 71,
604 71, 71, 71, 71, 71, 71, 71, 71, 71, 71,
605 71, 71, 71, 71, 71, 71, 71, 71, 71, 73,
606 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
607 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
608 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
610 73, 73, 73, 73, 73, 73, 73, 73, 73, 73,
611 73, 73, 81, 81, 81, 81, 81, 81, 81, 81,
612 81, 81, 81, 81, 81, 81, 81, 81, 81, 81,
613 81, 81, 81, 81, 81, 81, 81, 81, 81, 81,
614 81, 81, 81, 81, 81, 81, 81, 81, 81, 81,
615 81, 81, 81, 81, 81, 85, 85, 85, 85, 85,
616 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
617 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
618 85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
619 85, 85, 85, 85, 85, 85, 85, 85, 90, 90,
621 90, 90, 90, 90, 90, 90, 90, 90, 90, 90,
622 90, 90, 90, 90, 90, 90, 90, 90, 90, 90,
623 90, 90, 90, 90, 90, 90, 90, 90, 90, 90,
624 90, 90, 90, 90, 90, 90, 90, 90, 90, 90,
625 90, 95, 95, 95, 95, 95, 95, 95, 95, 95,
626 95, 95, 95, 95, 95, 95, 95, 95, 95, 95,
627 95, 95, 95, 95, 95, 95, 95, 95, 95, 95,
628 95, 95, 95, 95, 95, 95, 95, 95, 95, 95,
629 95, 95, 95, 95, 99, 99, 99, 99, 99, 99,
630 99, 99, 99, 99, 99, 99, 99, 99, 99, 99,
632 99, 99, 99, 99, 99, 99, 99, 99, 99, 99,
633 99, 99, 99, 99, 99, 99, 99, 99, 99, 99,
634 99, 99, 99, 99, 99, 99, 99, 103, 103, 103,
635 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
636 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
637 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
638 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
639 117, 117, 117, 117, 117, 117, 117, 117, 117, 117,
640 117, 117, 117, 117, 117, 117, 117, 117, 117, 117,
641 117, 117, 117, 117, 117, 117, 117, 117, 117, 117,
643 117, 117, 117, 117, 117, 117, 117, 117, 117, 117,
644 117, 117, 117, 121, 121, 121, 121, 121, 121, 121,
645 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
646 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
647 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
648 121, 121, 121, 121, 121, 121, 124, 124, 124, 124,
649 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
650 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
651 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
652 124, 124, 124, 124, 124, 124, 124, 124, 124, 127,
654 127, 127, 127, 127, 127, 127, 127, 127, 127, 127,
655 127, 127, 127, 127, 127, 127, 127, 127, 127, 127,
656 127, 127, 127, 127, 127, 127, 127, 127, 127, 127,
657 127, 127, 127, 127, 127, 127, 127, 127, 127, 127,
658 127, 127, 138, 138, 138, 138, 138, 138, 138, 138,
659 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
660 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
661 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
662 138, 138, 138, 138, 138, 143, 143, 143, 143, 143,
663 143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
665 143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
666 143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
667 143, 143, 143, 143, 143, 143, 143, 143, 148, 148,
668 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
669 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
670 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
671 148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
672 148, 156, 217, 212, 206, 156, 204, 203, 199, 198,
673 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
674 156, 156, 156, 156, 156, 156, 156, 197, 194, 191,
676 179, 176, 156, 160, 160, 160, 160, 160, 160, 160,
677 160, 160, 160, 160, 160, 160, 160, 160, 160, 160,
678 160, 160, 160, 160, 160, 160, 160, 160, 160, 160,
679 160, 160, 160, 160, 160, 160, 160, 160, 160, 160,
680 160, 160, 160, 171, 160, 160, 169, 159, 155, 340,
681 169, 118, 118, 89, 89, 169, 169, 169, 169, 169,
682 169, 169, 169, 169, 169, 169, 169, 169, 169, 169,
683 169, 169, 80, 74, 74, 72, 72, 169, 170, 170,
684 170, 170, 170, 170, 170, 170, 170, 170, 170, 170,
685 170, 170, 170, 170, 170, 170, 170, 170, 170, 170,
687 170, 170, 170, 170, 170, 170, 170, 170, 170, 170,
688 170, 170, 170, 170, 170, 170, 170, 170, 170, 170,
689 170, 178, 178, 178, 340, 178, 178, 178, 178, 178,
690 178, 178, 178, 178, 178, 178, 178, 178, 178, 178,
691 178, 178, 178, 178, 178, 178, 178, 178, 178, 178,
692 178, 178, 178, 178, 178, 178, 178, 178, 178, 340,
693 178, 178, 178, 178, 183, 183, 183, 340, 183, 183,
694 183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
695 183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
696 183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
698 183, 183, 183, 183, 183, 183, 183, 190, 190, 190,
699 190, 190, 190, 190, 190, 190, 190, 190, 190, 190,
700 190, 190, 190, 190, 190, 190, 190, 190, 190, 190,
701 190, 190, 190, 190, 190, 190, 190, 190, 190, 190,
702 190, 190, 190, 190, 190, 190, 190, 190, 190, 190,
703 192, 340, 340, 340, 340, 192, 192, 192, 192, 192,
704 192, 192, 192, 192, 192, 192, 192, 192, 192, 192,
705 192, 192, 192, 192, 192, 192, 192, 192, 192, 192,
706 192, 192, 192, 192, 192, 192, 192, 192, 192, 192,
707 192, 192, 192, 193, 193, 193, 193, 193, 193, 193,
709 193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
710 193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
711 193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
712 193, 193, 193, 193, 193, 193, 195, 195, 195, 340,
713 195, 195, 195, 195, 195, 195, 195, 195, 195, 195,
714 195, 340, 195, 195, 195, 195, 340, 340, 340, 340,
715 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
716 340, 340, 340, 195, 195, 195, 195, 195, 195, 196,
717 340, 340, 340, 196, 340, 340, 340, 340, 196, 196,
718 196, 196, 196, 196, 196, 196, 196, 196, 196, 196,
720 196, 196, 196, 196, 196, 340, 340, 340, 340, 340,
721 196, 200, 200, 200, 340, 200, 200, 200, 200, 200,
722 200, 200, 200, 200, 200, 200, 200, 200, 200, 200,
723 200, 200, 200, 200, 200, 200, 200, 200, 200, 200,
724 200, 200, 200, 200, 200, 200, 200, 200, 200, 200,
725 200, 200, 200, 200, 202, 340, 340, 340, 202, 340,
726 340, 340, 340, 202, 202, 202, 202, 202, 202, 202,
727 202, 202, 202, 202, 202, 202, 202, 202, 202, 202,
728 340, 340, 340, 340, 340, 202, 205, 205, 205, 340,
729 205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
731 205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
732 205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
733 205, 205, 205, 205, 205, 205, 205, 205, 205, 207,
734 207, 207, 340, 207, 207, 207, 207, 207, 207, 207,
735 207, 207, 207, 207, 207, 207, 207, 207, 207, 207,
736 207, 207, 207, 207, 207, 207, 207, 207, 207, 207,
737 207, 207, 207, 207, 207, 207, 207, 207, 207, 207,
738 207, 207, 210, 210, 210, 340, 210, 210, 210, 210,
739 210, 210, 210, 210, 210, 210, 210, 210, 210, 210,
740 210, 210, 210, 210, 210, 210, 210, 210, 210, 210,
742 210, 210, 210, 210, 210, 210, 210, 210, 210, 210,
743 340, 210, 210, 210, 210, 211, 211, 211, 340, 211,
744 211, 211, 211, 211, 211, 211, 211, 340, 211, 211,
745 340, 211, 211, 340, 340, 340, 340, 340, 340, 340,
746 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
747 340, 340, 211, 211, 340, 340, 211, 211, 213, 340,
748 340, 340, 213, 340, 340, 340, 340, 213, 213, 213,
749 213, 213, 213, 213, 213, 213, 213, 213, 213, 213,
750 213, 213, 213, 213, 340, 340, 340, 340, 340, 213,
751 214, 214, 214, 340, 214, 214, 214, 214, 214, 214,
753 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
754 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
755 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
756 214, 214, 214, 219, 219, 219, 219, 219, 219, 219,
757 219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
758 219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
759 219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
760 219, 219, 219, 219, 219, 219, 221, 221, 221, 340,
761 221, 221, 221, 221, 221, 340, 221, 221, 221, 221,
762 221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
764 221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
765 221, 221, 221, 221, 221, 221, 221, 221, 221, 223,
766 223, 223, 340, 223, 223, 223, 223, 223, 340, 223,
767 223, 223, 223, 223, 223, 223, 223, 223, 223, 223,
768 223, 223, 223, 223, 223, 223, 223, 223, 223, 223,
769 223, 223, 223, 223, 223, 223, 223, 223, 223, 223,
770 223, 223, 225, 225, 225, 340, 225, 225, 225, 225,
771 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
772 225, 340, 225, 225, 225, 225, 225, 225, 225, 225,
773 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
775 225, 225, 225, 340, 225, 226, 226, 226, 340, 226,
776 226, 226, 226, 226, 226, 226, 226, 226, 226, 226,
777 226, 226, 226, 226, 226, 226, 226, 226, 226, 226,
778 226, 226, 226, 226, 226, 226, 226, 226, 226, 226,
779 226, 226, 226, 226, 226, 226, 226, 226, 227, 227,
780 227, 340, 227, 227, 227, 227, 227, 227, 227, 227,
781 227, 227, 227, 340, 227, 227, 227, 227, 340, 340,
782 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
783 340, 340, 340, 340, 340, 227, 227, 227, 227, 227,
784 227, 231, 340, 340, 340, 231, 340, 340, 340, 340,
786 231, 231, 231, 231, 231, 231, 231, 231, 231, 231,
787 231, 231, 231, 231, 231, 231, 231, 340, 340, 340,
788 340, 340, 231, 234, 340, 340, 340, 340, 234, 234,
789 234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
790 234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
791 234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
792 234, 234, 234, 234, 234, 234, 240, 240, 240, 340,
793 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
794 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
795 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
797 240, 240, 240, 240, 240, 240, 240, 240, 240, 248,
798 248, 248, 340, 248, 248, 248, 248, 248, 248, 248,
799 248, 248, 248, 248, 248, 248, 248, 248, 248, 248,
800 248, 248, 248, 248, 248, 248, 248, 248, 248, 248,
801 248, 248, 248, 248, 248, 248, 248, 248, 248, 248,
802 248, 248, 252, 340, 340, 340, 340, 252, 252, 252,
803 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
804 252, 252, 252, 252, 256, 340, 340, 340, 340, 256,
805 256, 256, 256, 256, 256, 256, 256, 256, 256, 256,
806 256, 256, 256, 256, 256, 256, 257, 257, 257, 257,
808 257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
809 257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
810 257, 257, 257, 257, 257, 257, 257, 257, 257, 257,
811 257, 257, 257, 257, 257, 257, 257, 257, 257, 259,
812 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
813 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
814 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
815 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
816 259, 259, 266, 266, 266, 340, 266, 266, 266, 266,
817 266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
819 266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
820 266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
821 266, 266, 340, 266, 266, 269, 269, 269, 269, 269,
822 269, 340, 340, 340, 340, 340, 340, 340, 340, 340,
823 340, 340, 340, 340, 340, 340, 340, 269, 271, 271,
824 271, 340, 271, 271, 271, 271, 271, 271, 271, 271,
825 271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
826 271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
827 271, 271, 271, 271, 271, 271, 271, 271, 271, 271,
828 271, 277, 277, 277, 277, 277, 277, 340, 340, 340,
830 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
831 340, 340, 340, 277, 281, 281, 281, 281, 281, 281,
832 281, 281, 281, 281, 281, 281, 281, 281, 281, 281,
833 281, 281, 281, 281, 281, 281, 281, 281, 281, 281,
834 281, 281, 281, 281, 281, 281, 281, 281, 281, 281,
835 281, 281, 281, 281, 281, 281, 281, 291, 291, 291,
836 291, 291, 291, 340, 340, 340, 340, 340, 340, 340,
837 340, 340, 340, 340, 340, 340, 340, 340, 340, 291,
838 293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
839 293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
841 293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
842 293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
843 293, 293, 293, 295, 340, 340, 340, 295, 340, 340,
844 340, 340, 295, 295, 295, 295, 295, 295, 295, 295,
845 295, 295, 295, 295, 295, 295, 295, 295, 295, 340,
846 340, 340, 340, 340, 295, 300, 340, 340, 340, 300,
847 340, 340, 340, 340, 300, 300, 300, 300, 300, 300,
848 300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
849 300, 340, 340, 340, 340, 340, 300, 304, 304, 304,
850 304, 304, 304, 340, 340, 340, 340, 340, 340, 340,
852 340, 340, 340, 340, 340, 340, 340, 340, 340, 304,
853 276, 276, 276, 276, 276, 276, 276, 276, 276, 276,
854 276, 276, 276, 276, 276, 276, 276, 276, 276, 276,
855 276, 276, 276, 276, 276, 276, 276, 276, 276, 276,
856 276, 276, 276, 276, 276, 276, 276, 276, 276, 276,
857 276, 276, 276, 307, 307, 307, 307, 307, 307, 340,
858 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
859 340, 340, 340, 340, 340, 307, 284, 284, 284, 340,
860 284, 284, 284, 284, 284, 284, 284, 284, 284, 284,
861 284, 284, 284, 284, 284, 284, 284, 284, 284, 284,
863 284, 284, 284, 284, 284, 284, 284, 284, 284, 284,
864 284, 284, 284, 284, 284, 284, 284, 284, 284, 314,
865 314, 314, 314, 314, 314, 340, 340, 340, 340, 340,
866 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
867 340, 314, 45, 340, 340, 340, 340, 340, 340, 340,
868 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
869 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
870 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
871 340, 340, 340, 340, 340, 340
874 static const short int yy_chk
[3287] =
876 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
877 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
878 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
879 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
880 1, 1, 1, 2, 2, 2, 2, 2, 2, 2,
881 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
882 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
883 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
884 2, 2, 2, 2, 2, 2, 3, 3, 3, 3,
885 3, 3, 3, 3, 3, 70, 66, 3, 11, 11,
887 11, 11, 17, 66, 3, 12, 12, 12, 12, 18,
888 29, 98, 17, 166, 30, 23, 166, 24, 98, 18,
889 70, 19, 3, 23, 3, 24, 3, 4, 4, 4,
890 4, 4, 4, 4, 4, 4, 4, 19, 4, 17,
891 4, 17, 329, 31, 328, 4, 18, 29, 18, 31,
892 23, 30, 24, 23, 32, 24, 33, 327, 34, 19,
893 32, 326, 33, 4, 34, 4, 325, 4, 9, 9,
894 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
895 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
896 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
898 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
899 9, 13, 13, 13, 13, 13, 13, 13, 13, 13,
900 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
901 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
902 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
903 13, 13, 13, 13, 20, 21, 35, 22, 47, 47,
904 47, 47, 21, 21, 22, 22, 51, 51, 51, 51,
905 20, 324, 35, 58, 58, 58, 58, 102, 62, 58,
906 62, 62, 82, 82, 102, 82, 58, 139, 139, 323,
907 139, 322, 20, 21, 35, 22, 25, 25, 25, 25,
909 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
910 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
911 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
912 25, 25, 25, 25, 25, 25, 25, 25, 25, 36,
913 39, 39, 39, 39, 67, 67, 67, 67, 111, 106,
914 67, 132, 132, 147, 132, 36, 106, 67, 144, 144,
915 147, 144, 151, 321, 132, 153, 153, 153, 153, 151,
916 39, 111, 320, 160, 160, 39, 160, 36, 37, 37,
917 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
918 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
920 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
921 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
922 37, 40, 40, 40, 40, 43, 43, 43, 43, 149,
923 149, 317, 149, 155, 155, 155, 155, 315, 43, 157,
924 157, 157, 157, 161, 161, 313, 161, 163, 163, 312,
925 163, 40, 165, 165, 165, 165, 40, 311, 172, 172,
926 172, 172, 310, 309, 172, 43, 44, 44, 44, 44,
927 149, 172, 178, 179, 214, 178, 179, 308, 306, 44,
928 179, 186, 186, 186, 186, 201, 201, 186, 201, 228,
929 228, 305, 228, 301, 186, 235, 235, 214, 235, 299,
931 238, 238, 228, 238, 298, 293, 44, 44, 54, 239,
932 239, 239, 239, 292, 54, 288, 54, 287, 54, 247,
933 247, 54, 247, 54, 54, 54, 54, 54, 54, 54,
934 286, 285, 281, 54, 65, 65, 65, 280, 65, 65,
935 65, 65, 65, 65, 65, 65, 65, 65, 65, 65,
936 65, 65, 65, 65, 65, 65, 65, 65, 65, 65,
937 65, 65, 65, 65, 65, 65, 65, 65, 65, 65,
938 65, 65, 65, 65, 65, 65, 65, 181, 279, 278,
939 276, 181, 245, 245, 245, 245, 181, 181, 181, 181,
940 181, 181, 181, 181, 181, 181, 181, 181, 181, 181,
942 181, 181, 181, 273, 249, 249, 181, 249, 181, 199,
943 199, 199, 199, 199, 199, 199, 199, 199, 199, 199,
944 199, 199, 199, 199, 199, 199, 199, 199, 199, 199,
945 199, 199, 199, 199, 199, 199, 199, 199, 199, 199,
946 199, 199, 199, 199, 199, 199, 199, 199, 199, 199,
947 199, 199, 230, 230, 230, 272, 230, 230, 230, 230,
948 230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
949 230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
950 230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
951 230, 230, 230, 230, 230, 243, 243, 270, 243, 251,
953 251, 262, 251, 253, 253, 253, 253, 265, 259, 257,
954 265, 265, 289, 289, 289, 289, 296, 296, 296, 296,
955 303, 255, 318, 303, 303, 318, 319, 254, 250, 319,
956 244, 242, 237, 236, 233, 232, 243, 264, 264, 264,
957 264, 264, 264, 229, 222, 219, 218, 217, 209, 204,
958 198, 197, 193, 190, 185, 264, 176, 175, 264, 264,
959 302, 302, 302, 302, 302, 302, 174, 170, 168, 162,
960 152, 150, 146, 142, 141, 137, 136, 134, 126, 123,
961 117, 114, 302, 341, 341, 341, 341, 341, 341, 341,
962 341, 341, 341, 341, 341, 341, 341, 341, 341, 341,
964 341, 341, 341, 341, 341, 341, 341, 341, 341, 341,
965 341, 341, 341, 341, 341, 341, 341, 341, 341, 341,
966 341, 341, 341, 341, 341, 341, 342, 342, 342, 342,
967 342, 342, 342, 342, 342, 342, 342, 342, 342, 342,
968 342, 342, 342, 342, 342, 342, 342, 342, 342, 342,
969 342, 342, 342, 342, 342, 342, 342, 342, 342, 342,
970 342, 342, 342, 342, 342, 342, 342, 342, 342, 343,
971 343, 343, 343, 343, 343, 343, 343, 343, 343, 343,
972 343, 343, 343, 343, 343, 343, 343, 343, 343, 343,
973 343, 343, 343, 343, 343, 343, 343, 343, 343, 343,
975 343, 343, 343, 343, 343, 343, 343, 343, 343, 343,
976 343, 343, 344, 344, 344, 344, 344, 344, 344, 344,
977 344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
978 344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
979 344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
980 344, 344, 344, 344, 344, 345, 345, 345, 345, 345,
981 345, 345, 345, 345, 345, 345, 345, 345, 345, 345,
982 345, 345, 345, 345, 345, 345, 345, 345, 345, 345,
983 345, 345, 345, 345, 345, 345, 345, 345, 345, 345,
984 345, 345, 345, 345, 345, 345, 345, 345, 346, 346,
986 346, 346, 346, 346, 346, 346, 346, 346, 346, 346,
987 346, 346, 346, 346, 346, 346, 346, 346, 346, 346,
988 346, 346, 346, 346, 346, 346, 346, 346, 346, 346,
989 346, 346, 346, 346, 346, 346, 346, 346, 346, 346,
990 346, 347, 347, 347, 347, 347, 347, 347, 347, 347,
991 347, 347, 347, 347, 347, 347, 347, 347, 347, 347,
992 347, 347, 347, 347, 347, 347, 347, 347, 347, 347,
993 347, 347, 347, 347, 347, 347, 347, 347, 347, 347,
994 347, 347, 347, 347, 348, 348, 348, 348, 348, 348,
995 348, 348, 348, 348, 348, 348, 348, 348, 348, 348,
997 348, 348, 348, 348, 348, 348, 348, 348, 348, 348,
998 348, 348, 348, 348, 348, 348, 348, 348, 348, 348,
999 348, 348, 348, 348, 348, 348, 348, 349, 349, 349,
1000 349, 349, 349, 349, 349, 349, 349, 349, 349, 349,
1001 349, 349, 349, 349, 349, 349, 349, 349, 349, 349,
1002 349, 349, 349, 349, 349, 349, 349, 349, 349, 349,
1003 349, 349, 349, 349, 349, 349, 349, 349, 349, 349,
1004 350, 350, 350, 350, 350, 350, 350, 350, 350, 350,
1005 350, 350, 350, 350, 350, 350, 350, 350, 350, 350,
1006 350, 350, 350, 350, 350, 350, 350, 350, 350, 350,
1008 350, 350, 350, 350, 350, 350, 350, 350, 350, 350,
1009 350, 350, 350, 351, 351, 351, 351, 351, 351, 351,
1010 351, 351, 351, 351, 351, 351, 351, 351, 351, 351,
1011 351, 351, 351, 351, 351, 351, 351, 351, 351, 351,
1012 351, 351, 351, 351, 351, 351, 351, 351, 351, 351,
1013 351, 351, 351, 351, 351, 351, 352, 352, 352, 352,
1014 352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
1015 352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
1016 352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
1017 352, 352, 352, 352, 352, 352, 352, 352, 352, 353,
1019 353, 353, 353, 353, 353, 353, 353, 353, 353, 353,
1020 353, 353, 353, 353, 353, 353, 353, 353, 353, 353,
1021 353, 353, 353, 353, 353, 353, 353, 353, 353, 353,
1022 353, 353, 353, 353, 353, 353, 353, 353, 353, 353,
1023 353, 353, 354, 354, 354, 354, 354, 354, 354, 354,
1024 354, 354, 354, 354, 354, 354, 354, 354, 354, 354,
1025 354, 354, 354, 354, 354, 354, 354, 354, 354, 354,
1026 354, 354, 354, 354, 354, 354, 354, 354, 354, 354,
1027 354, 354, 354, 354, 354, 355, 355, 355, 355, 355,
1028 355, 355, 355, 355, 355, 355, 355, 355, 355, 355,
1030 355, 355, 355, 355, 355, 355, 355, 355, 355, 355,
1031 355, 355, 355, 355, 355, 355, 355, 355, 355, 355,
1032 355, 355, 355, 355, 355, 355, 355, 355, 356, 356,
1033 356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
1034 356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
1035 356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
1036 356, 356, 356, 356, 356, 356, 356, 356, 356, 356,
1037 356, 357, 113, 109, 100, 357, 94, 88, 80, 79,
1038 357, 357, 357, 357, 357, 357, 357, 357, 357, 357,
1039 357, 357, 357, 357, 357, 357, 357, 78, 73, 71,
1041 64, 61, 357, 358, 358, 358, 358, 358, 358, 358,
1042 358, 358, 358, 358, 358, 358, 358, 358, 358, 358,
1043 358, 358, 358, 358, 358, 358, 358, 358, 358, 358,
1044 358, 358, 358, 358, 358, 358, 358, 358, 358, 358,
1045 358, 358, 358, 56, 358, 358, 359, 53, 49, 45,
1046 359, 28, 27, 16, 15, 359, 359, 359, 359, 359,
1047 359, 359, 359, 359, 359, 359, 359, 359, 359, 359,
1048 359, 359, 10, 8, 7, 6, 5, 359, 360, 360,
1049 360, 360, 360, 360, 360, 360, 360, 360, 360, 360,
1050 360, 360, 360, 360, 360, 360, 360, 360, 360, 360,
1052 360, 360, 360, 360, 360, 360, 360, 360, 360, 360,
1053 360, 360, 360, 360, 360, 360, 360, 360, 360, 360,
1054 360, 361, 361, 361, 0, 361, 361, 361, 361, 361,
1055 361, 361, 361, 361, 361, 361, 361, 361, 361, 361,
1056 361, 361, 361, 361, 361, 361, 361, 361, 361, 361,
1057 361, 361, 361, 361, 361, 361, 361, 361, 361, 0,
1058 361, 361, 361, 361, 362, 362, 362, 0, 362, 362,
1059 362, 362, 362, 362, 362, 362, 362, 362, 362, 362,
1060 362, 362, 362, 362, 362, 362, 362, 362, 362, 362,
1061 362, 362, 362, 362, 362, 362, 362, 362, 362, 362,
1063 362, 362, 362, 362, 362, 362, 362, 363, 363, 363,
1064 363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
1065 363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
1066 363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
1067 363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
1068 364, 0, 0, 0, 0, 364, 364, 364, 364, 364,
1069 364, 364, 364, 364, 364, 364, 364, 364, 364, 364,
1070 364, 364, 364, 364, 364, 364, 364, 364, 364, 364,
1071 364, 364, 364, 364, 364, 364, 364, 364, 364, 364,
1072 364, 364, 364, 365, 365, 365, 365, 365, 365, 365,
1074 365, 365, 365, 365, 365, 365, 365, 365, 365, 365,
1075 365, 365, 365, 365, 365, 365, 365, 365, 365, 365,
1076 365, 365, 365, 365, 365, 365, 365, 365, 365, 365,
1077 365, 365, 365, 365, 365, 365, 366, 366, 366, 0,
1078 366, 366, 366, 366, 366, 366, 366, 366, 366, 366,
1079 366, 0, 366, 366, 366, 366, 0, 0, 0, 0,
1080 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1081 0, 0, 0, 366, 366, 366, 366, 366, 366, 367,
1082 0, 0, 0, 367, 0, 0, 0, 0, 367, 367,
1083 367, 367, 367, 367, 367, 367, 367, 367, 367, 367,
1085 367, 367, 367, 367, 367, 0, 0, 0, 0, 0,
1086 367, 368, 368, 368, 0, 368, 368, 368, 368, 368,
1087 368, 368, 368, 368, 368, 368, 368, 368, 368, 368,
1088 368, 368, 368, 368, 368, 368, 368, 368, 368, 368,
1089 368, 368, 368, 368, 368, 368, 368, 368, 368, 368,
1090 368, 368, 368, 368, 369, 0, 0, 0, 369, 0,
1091 0, 0, 0, 369, 369, 369, 369, 369, 369, 369,
1092 369, 369, 369, 369, 369, 369, 369, 369, 369, 369,
1093 0, 0, 0, 0, 0, 369, 370, 370, 370, 0,
1094 370, 370, 370, 370, 370, 370, 370, 370, 370, 370,
1096 370, 370, 370, 370, 370, 370, 370, 370, 370, 370,
1097 370, 370, 370, 370, 370, 370, 370, 370, 370, 370,
1098 370, 370, 370, 370, 370, 370, 370, 370, 370, 371,
1099 371, 371, 0, 371, 371, 371, 371, 371, 371, 371,
1100 371, 371, 371, 371, 371, 371, 371, 371, 371, 371,
1101 371, 371, 371, 371, 371, 371, 371, 371, 371, 371,
1102 371, 371, 371, 371, 371, 371, 371, 371, 371, 371,
1103 371, 371, 372, 372, 372, 0, 372, 372, 372, 372,
1104 372, 372, 372, 372, 372, 372, 372, 372, 372, 372,
1105 372, 372, 372, 372, 372, 372, 372, 372, 372, 372,
1107 372, 372, 372, 372, 372, 372, 372, 372, 372, 372,
1108 0, 372, 372, 372, 372, 373, 373, 373, 0, 373,
1109 373, 373, 373, 373, 373, 373, 373, 0, 373, 373,
1110 0, 373, 373, 0, 0, 0, 0, 0, 0, 0,
1111 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1112 0, 0, 373, 373, 0, 0, 373, 373, 374, 0,
1113 0, 0, 374, 0, 0, 0, 0, 374, 374, 374,
1114 374, 374, 374, 374, 374, 374, 374, 374, 374, 374,
1115 374, 374, 374, 374, 0, 0, 0, 0, 0, 374,
1116 375, 375, 375, 0, 375, 375, 375, 375, 375, 375,
1118 375, 375, 375, 375, 375, 375, 375, 375, 375, 375,
1119 375, 375, 375, 375, 375, 375, 375, 375, 375, 375,
1120 375, 375, 375, 375, 375, 375, 375, 375, 375, 375,
1121 375, 375, 375, 376, 376, 376, 376, 376, 376, 376,
1122 376, 376, 376, 376, 376, 376, 376, 376, 376, 376,
1123 376, 376, 376, 376, 376, 376, 376, 376, 376, 376,
1124 376, 376, 376, 376, 376, 376, 376, 376, 376, 376,
1125 376, 376, 376, 376, 376, 376, 377, 377, 377, 0,
1126 377, 377, 377, 377, 377, 0, 377, 377, 377, 377,
1127 377, 377, 377, 377, 377, 377, 377, 377, 377, 377,
1129 377, 377, 377, 377, 377, 377, 377, 377, 377, 377,
1130 377, 377, 377, 377, 377, 377, 377, 377, 377, 378,
1131 378, 378, 0, 378, 378, 378, 378, 378, 0, 378,
1132 378, 378, 378, 378, 378, 378, 378, 378, 378, 378,
1133 378, 378, 378, 378, 378, 378, 378, 378, 378, 378,
1134 378, 378, 378, 378, 378, 378, 378, 378, 378, 378,
1135 378, 378, 379, 379, 379, 0, 379, 379, 379, 379,
1136 379, 379, 379, 379, 379, 379, 379, 379, 379, 379,
1137 379, 0, 379, 379, 379, 379, 379, 379, 379, 379,
1138 379, 379, 379, 379, 379, 379, 379, 379, 379, 379,
1140 379, 379, 379, 0, 379, 380, 380, 380, 0, 380,
1141 380, 380, 380, 380, 380, 380, 380, 380, 380, 380,
1142 380, 380, 380, 380, 380, 380, 380, 380, 380, 380,
1143 380, 380, 380, 380, 380, 380, 380, 380, 380, 380,
1144 380, 380, 380, 380, 380, 380, 380, 380, 381, 381,
1145 381, 0, 381, 381, 381, 381, 381, 381, 381, 381,
1146 381, 381, 381, 0, 381, 381, 381, 381, 0, 0,
1147 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1148 0, 0, 0, 0, 0, 381, 381, 381, 381, 381,
1149 381, 382, 0, 0, 0, 382, 0, 0, 0, 0,
1151 382, 382, 382, 382, 382, 382, 382, 382, 382, 382,
1152 382, 382, 382, 382, 382, 382, 382, 0, 0, 0,
1153 0, 0, 382, 383, 0, 0, 0, 0, 383, 383,
1154 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
1155 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
1156 383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
1157 383, 383, 383, 383, 383, 383, 384, 384, 384, 0,
1158 384, 384, 384, 384, 384, 384, 384, 384, 384, 384,
1159 384, 384, 384, 384, 384, 384, 384, 384, 384, 384,
1160 384, 384, 384, 384, 384, 384, 384, 384, 384, 384,
1162 384, 384, 384, 384, 384, 384, 384, 384, 384, 385,
1163 385, 385, 0, 385, 385, 385, 385, 385, 385, 385,
1164 385, 385, 385, 385, 385, 385, 385, 385, 385, 385,
1165 385, 385, 385, 385, 385, 385, 385, 385, 385, 385,
1166 385, 385, 385, 385, 385, 385, 385, 385, 385, 385,
1167 385, 385, 386, 0, 0, 0, 0, 386, 386, 386,
1168 386, 386, 386, 386, 386, 386, 386, 386, 386, 386,
1169 386, 386, 386, 386, 387, 0, 0, 0, 0, 387,
1170 387, 387, 387, 387, 387, 387, 387, 387, 387, 387,
1171 387, 387, 387, 387, 387, 387, 388, 388, 388, 388,
1173 388, 388, 388, 388, 388, 388, 388, 388, 388, 388,
1174 388, 388, 388, 388, 388, 388, 388, 388, 388, 388,
1175 388, 388, 388, 388, 388, 388, 388, 388, 388, 388,
1176 388, 388, 388, 388, 388, 388, 388, 388, 388, 389,
1177 389, 389, 389, 389, 389, 389, 389, 389, 389, 389,
1178 389, 389, 389, 389, 389, 389, 389, 389, 389, 389,
1179 389, 389, 389, 389, 389, 389, 389, 389, 389, 389,
1180 389, 389, 389, 389, 389, 389, 389, 389, 389, 389,
1181 389, 389, 390, 390, 390, 0, 390, 390, 390, 390,
1182 390, 390, 390, 390, 390, 390, 390, 390, 390, 390,
1184 390, 390, 390, 390, 390, 390, 390, 390, 390, 390,
1185 390, 390, 390, 390, 390, 390, 390, 390, 390, 390,
1186 390, 390, 0, 390, 390, 391, 391, 391, 391, 391,
1187 391, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1188 0, 0, 0, 0, 0, 0, 0, 391, 392, 392,
1189 392, 0, 392, 392, 392, 392, 392, 392, 392, 392,
1190 392, 392, 392, 392, 392, 392, 392, 392, 392, 392,
1191 392, 392, 392, 392, 392, 392, 392, 392, 392, 392,
1192 392, 392, 392, 392, 392, 392, 392, 392, 392, 392,
1193 392, 393, 393, 393, 393, 393, 393, 0, 0, 0,
1195 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1196 0, 0, 0, 393, 394, 394, 394, 394, 394, 394,
1197 394, 394, 394, 394, 394, 394, 394, 394, 394, 394,
1198 394, 394, 394, 394, 394, 394, 394, 394, 394, 394,
1199 394, 394, 394, 394, 394, 394, 394, 394, 394, 394,
1200 394, 394, 394, 394, 394, 394, 394, 395, 395, 395,
1201 395, 395, 395, 0, 0, 0, 0, 0, 0, 0,
1202 0, 0, 0, 0, 0, 0, 0, 0, 0, 395,
1203 396, 396, 396, 396, 396, 396, 396, 396, 396, 396,
1204 396, 396, 396, 396, 396, 396, 396, 396, 396, 396,
1206 396, 396, 396, 396, 396, 396, 396, 396, 396, 396,
1207 396, 396, 396, 396, 396, 396, 396, 396, 396, 396,
1208 396, 396, 396, 397, 0, 0, 0, 397, 0, 0,
1209 0, 0, 397, 397, 397, 397, 397, 397, 397, 397,
1210 397, 397, 397, 397, 397, 397, 397, 397, 397, 0,
1211 0, 0, 0, 0, 397, 398, 0, 0, 0, 398,
1212 0, 0, 0, 0, 398, 398, 398, 398, 398, 398,
1213 398, 398, 398, 398, 398, 398, 398, 398, 398, 398,
1214 398, 0, 0, 0, 0, 0, 398, 399, 399, 399,
1215 399, 399, 399, 0, 0, 0, 0, 0, 0, 0,
1217 0, 0, 0, 0, 0, 0, 0, 0, 0, 399,
1218 400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
1219 400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
1220 400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
1221 400, 400, 400, 400, 400, 400, 400, 400, 400, 400,
1222 400, 400, 400, 401, 401, 401, 401, 401, 401, 0,
1223 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1224 0, 0, 0, 0, 0, 401, 402, 402, 402, 0,
1225 402, 402, 402, 402, 402, 402, 402, 402, 402, 402,
1226 402, 402, 402, 402, 402, 402, 402, 402, 402, 402,
1228 402, 402, 402, 402, 402, 402, 402, 402, 402, 402,
1229 402, 402, 402, 402, 402, 402, 402, 402, 402, 403,
1230 403, 403, 403, 403, 403, 0, 0, 0, 0, 0,
1231 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1232 0, 403, 340, 340, 340, 340, 340, 340, 340, 340,
1233 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
1234 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
1235 340, 340, 340, 340, 340, 340, 340, 340, 340, 340,
1236 340, 340, 340, 340, 340, 340
1239 static yy_ste_type yy_last_accepting_state
;
1240 static YY_CHAR
*yy_last_accepting_cpos
;
1242 /* the intent behind this definition is that it'll catch
1243 * any uses of REJECT which flex missed
1245 #define REJECT reject_used_but_not_detected
1246 #define yymore() yymrused_but_not_detected
1247 #define YY_MORE_ADJ 0
1249 /* these variables are all declared out here so that section 3 code can
1252 /* points to current character in buffer */
1253 static YY_CHAR
*yy_c_buf_p
= (YY_CHAR
*) 0;
1254 static int yy_init
= 1; /* whether we need to initialize */
1255 static int yy_start
= 0; /* start state number */
1257 /* flag which is used to allow yywrap()'s to do buffer switches
1258 * instead of setting up a fresh yyin. A bit of a hack ...
1260 static int yy_did_buffer_switch_on_eof
;
1262 static yy_ste_type yy_get_previous_state
YY_PROTO(( void ));
1263 static yy_ste_type yy_try_NUL_trans
YY_PROTO(( yy_ste_type current_state
));
1264 static int yy_get_next_buffer
YY_PROTO(( void ));
1265 static void yyunput
YY_PROTO(( YY_CHAR c
, YY_CHAR
*buf_ptr
));
1266 void yyrestrt
YY_PROTO(( FILE *input_file
));
1267 void yyswtobf
YY_PROTO(( YY_BUFFER_STATE new_buffer
));
1268 void yyldbfst
YY_PROTO(( void ));
1269 YY_BUFFER_STATE yycrbffr
YY_PROTO(( FILE *file
, int size
));
1270 void yydlbffr
YY_PROTO(( YY_BUFFER_STATE b
));
1271 void yyinbffr
YY_PROTO(( YY_BUFFER_STATE b
, FILE *file
));
1273 #define yy_new_buffer yycrbffr
1276 static int yyinput
YY_PROTO(( void ));
1278 static int input
YY_PROTO(( void ));
1283 register yy_ste_type yy_current_state
;
1284 register YY_CHAR
*yy_cp
, *yy_bp
;
1285 register int yy_act
;
1288 static int bracelevel
, didadef
;
1289 int i
, indented_code
, checking_used
, new_xlation
;
1290 int doing_codeblock
= false;
1291 Char nmdef
[MAXLINE
], myesc();
1299 yy_start
= 1; /* first start state */
1307 if ( yy_current_buffer
)
1308 yyinbffr( yy_current_buffer
, yyin
);
1310 yy_current_buffer
= yycrbffr( yyin
, YY_BUF_SIZE
);
1317 while ( 1 ) /* loops until end-of-file is reached */
1321 /* support of yytext */
1322 *yy_cp
= yy_hold_char
;
1324 /* yy_bp points to the position in yy_ch_buf of the start of the
1329 yy_current_state
= yy_start
;
1330 if ( yy_bp
[-1] == '\n' )
1335 register YY_CHAR yy_c
= yy_ec
[*yy_cp
];
1336 if ( yy_accept
[yy_current_state
] )
1338 yy_last_accepting_state
= yy_current_state
;
1339 yy_last_accepting_cpos
= yy_cp
;
1341 while(yy_chk
[yy_base
[yy_current_state
] + yy_c
] != yy_current_state
)
1343 yy_current_state
= yy_def
[yy_current_state
];
1345 yy_current_state
= yy_nxt
[yy_base
[yy_current_state
] + yy_c
];
1348 while ( yy_current_state
!= 340 );
1349 yy_cp
= yy_last_accepting_cpos
;
1350 yy_current_state
= yy_last_accepting_state
;
1353 yy_act
= yy_accept
[yy_current_state
];
1355 YY_DO_BEFORE_ACTION
;
1358 do_action
: /* this label is used only to access EOF actions */
1363 case 0: /* must backtrack */
1364 /* undo the effects of YY_DO_BEFORE_ACTION */
1365 *yy_cp
= yy_hold_char
;
1366 yy_cp
= yy_last_accepting_cpos
;
1367 yy_current_state
= yy_last_accepting_state
;
1368 goto yy_find_action
;
1372 indented_code
= true; BEGIN(CODEBLOCK
);
1376 ++linenum
; /* treat as a comment */
1380 ECHO
; BEGIN(C_COMMENT
);
1395 indented_code
= false;
1400 # line 102 "<stdin>"
1401 return ( WHITESPACE
);
1404 # line 104 "<stdin>"
1413 # line 111 "<stdin>"
1415 pptmsg( "warning - %%used/%%unused have been deprecated" );
1416 checking_used
= REALLY_USED
; BEGIN(USED_LIST
);
1420 # line 115 "<stdin>"
1422 checking_used
= REALLY_NOT_USED
; BEGIN(USED_LIST
);
1423 pptmsg( "warning - %%used/%%unused have been deprecated" );
1424 checking_used
= REALLY_NOT_USED
; BEGIN(USED_LIST
);
1428 # line 122 "<stdin>"
1432 "old-style lex command at line %d ignored:\n\t%s",
1439 # line 131 "<stdin>"
1440 /* ignore old lex directive */
1443 # line 133 "<stdin>"
1447 (int *) malloc( sizeof( int ) * (unsigned) csize
);
1451 "dynamic memory failure building %t table" );
1453 for ( i
= 0; i
< csize
; ++i
)
1462 # line 150 "<stdin>"
1463 synerr( "unrecognized '%' directive" );
1466 # line 152 "<stdin>"
1468 (void) strcpy( nmstr
, (char *) yytext
);
1474 # line 158 "<stdin>"
1478 # line 159 "<stdin>"
1479 ++linenum
; /* allows blank lines in section 1 */
1482 # line 160 "<stdin>"
1483 ++linenum
; return ( '\n' );
1486 # line 161 "<stdin>"
1487 synerr( "illegal character" ); BEGIN(RECOVER
);
1490 # line 164 "<stdin>"
1491 ECHO
; BEGIN(INITIAL
);
1494 # line 165 "<stdin>"
1495 ++linenum
; ECHO
; BEGIN(INITIAL
);
1498 # line 166 "<stdin>"
1502 # line 167 "<stdin>"
1506 # line 168 "<stdin>"
1510 # line 171 "<stdin>"
1511 ++linenum
; BEGIN(INITIAL
);
1514 # line 172 "<stdin>"
1515 ECHO
; CHECK_REJECT(yytext
);
1518 # line 173 "<stdin>"
1519 ECHO
; CHECK_YYMORE(yytext
);
1522 # line 174 "<stdin>"
1526 # line 175 "<stdin>"
1530 if ( indented_code
)
1535 # line 183 "<stdin>"
1536 /* separates name and definition */
1539 # line 185 "<stdin>"
1541 (void) strcpy( (char *) nmdef
, (char *) yytext
);
1543 for ( i
= strlen( (char *) nmdef
) - 1;
1545 nmdef
[i
] == ' ' || nmdef
[i
] == '\t';
1549 nmdef
[i
+ 1] = '\0';
1551 ndinstal( nmstr
, nmdef
);
1556 # line 200 "<stdin>"
1559 synerr( "incomplete name definition" );
1565 # line 207 "<stdin>"
1566 ++linenum
; BEGIN(INITIAL
); RETURNNAME
;
1569 # line 210 "<stdin>"
1570 ++linenum
; BEGIN(INITIAL
);
1573 # line 211 "<stdin>"
1577 # line 212 "<stdin>"
1579 if ( allupper( yytext
) )
1580 rjctused
= checking_used
;
1582 synerr( "unrecognized %used/%unused construct" );
1586 # line 218 "<stdin>"
1588 if ( alllower( yytext
) )
1589 yymrreus
= checking_used
;
1591 synerr( "unrecognized %used/%unused construct" );
1595 # line 224 "<stdin>"
1596 synerr( "unrecognized %used/%unused construct" );
1599 # line 227 "<stdin>"
1600 ++linenum
; BEGIN(INITIAL
);
1603 # line 228 "<stdin>"
1604 ++nuxlatns
; new_xlation
= true;
1607 # line 229 "<stdin>"
1608 synerr( "bad row in translation table" );
1611 # line 230 "<stdin>"
1612 /* ignore whitespace */
1615 # line 232 "<stdin>"
1617 xlation
[myesc( yytext
)] =
1618 (new_xlation
? nuxlatns
: -nuxlatns
);
1619 new_xlation
= false;
1623 # line 237 "<stdin>"
1625 xlation
[yytext
[0]] =
1626 (new_xlation
? nuxlatns
: -nuxlatns
);
1627 new_xlation
= false;
1631 # line 243 "<stdin>"
1635 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1636 yy_c_buf_p
= yy_cp
-= 1;
1637 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1638 # line 246 "<stdin>"
1647 # line 253 "<stdin>"
1648 ++linenum
; ACTION_ECHO
;
1650 case YY_STATE_EOF(SECT2PROLOG
):
1651 # line 255 "<stdin>"
1652 MARK_END_OF_PROLOG
; yyterminate();
1655 # line 257 "<stdin>"
1656 ++linenum
; /* allow blank lines in section 2 */
1659 # line 259 "<stdin>"
1661 indented_code
= (yytext
[0] != '%');
1662 doing_codeblock
= true;
1665 if ( indented_code
)
1672 # line 270 "<stdin>"
1673 BEGIN(SC
); return ( '<' );
1676 # line 271 "<stdin>"
1680 # line 272 "<stdin>"
1681 BEGIN(QUOTE
); return ( '"' );
1684 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1685 yy_c_buf_p
= yy_cp
= yy_bp
+ 1;
1686 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1687 # line 273 "<stdin>"
1688 BEGIN(NUM
); return ( '{' );
1691 # line 274 "<stdin>"
1695 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1696 yy_c_buf_p
= yy_cp
= yy_bp
+ 1;
1697 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1698 # line 275 "<stdin>"
1702 # line 277 "<stdin>"
1705 BEGIN(PERCENT_BRACE_ACTION
);
1710 # line 282 "<stdin>"
1711 cntdactn
= true; ++linenum
; return ( '\n' );
1714 # line 284 "<stdin>"
1716 /* this rule is separate from the one below because
1717 * otherwise we get variable trailing context, so
1718 * we can't build the scanner using -{f,F}
1727 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1728 yy_c_buf_p
= yy_cp
-= 1;
1729 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1730 # line 295 "<stdin>"
1739 # line 302 "<stdin>"
1740 ++linenum
; return ( '\n' );
1743 # line 304 "<stdin>"
1747 # line 306 "<stdin>"
1751 return ( EOF
); /* to stop the parser */
1755 # line 312 "<stdin>"
1759 (void) strcpy( nmstr
, (char *) yytext
);
1761 /* check to see if we've already encountered this ccl */
1762 if ( (cclval
= ccllookp( (Char
*) nmstr
)) )
1770 /* we fudge a bit. We know that this ccl will
1771 * soon be numbered as lastccl + 1 by cclinit
1773 cclnstal( (Char
*) nmstr
, lastccl
+ 1 );
1775 /* push back everything but the leading bracket
1776 * so the ccl can be rescanned
1778 PUT_BACK_STRING((Char
*) nmstr
, 1);
1786 # line 341 "<stdin>"
1788 register Char
*nmdefptr
;
1791 (void) strcpy( nmstr
, (char *) yytext
);
1792 nmstr
[yyleng
- 1] = '\0'; /* chop trailing brace */
1794 /* lookup from "nmstr + 1" to chop leading brace */
1795 if ( ! (nmdefptr
= ndlookup( nmstr
+ 1 )) )
1796 synerr( "undefined {name}" );
1799 { /* push back name surrounded by ()'s */
1801 PUT_BACK_STRING(nmdefptr
, 0);
1807 # line 360 "<stdin>"
1808 return ( yytext
[0] );
1811 # line 361 "<stdin>"
1815 # line 362 "<stdin>"
1816 ++linenum
; return ( '\n' );
1819 # line 365 "<stdin>"
1823 # line 366 "<stdin>"
1824 BEGIN(SECT2
); return ( '>' );
1827 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1828 yy_c_buf_p
= yy_cp
= yy_bp
+ 1;
1829 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1830 # line 367 "<stdin>"
1831 BEGIN(CARETISBOL
); return ( '>' );
1834 # line 368 "<stdin>"
1838 # line 369 "<stdin>"
1839 synerr( "bad start condition name" );
1842 # line 371 "<stdin>"
1843 BEGIN(SECT2
); return ( '^' );
1846 # line 374 "<stdin>"
1850 # line 375 "<stdin>"
1851 BEGIN(SECT2
); return ( '"' );
1854 # line 377 "<stdin>"
1856 synerr( "missing quote" );
1863 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1864 yy_c_buf_p
= yy_cp
= yy_bp
+ 1;
1865 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1866 # line 385 "<stdin>"
1867 BEGIN(CCL
); return ( '^' );
1870 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1871 yy_c_buf_p
= yy_cp
= yy_bp
+ 1;
1872 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1873 # line 386 "<stdin>"
1877 # line 387 "<stdin>"
1878 BEGIN(CCL
); yylval
= '-'; return ( CHAR
);
1881 # line 388 "<stdin>"
1882 BEGIN(CCL
); RETURNCHAR
;
1885 *yy_cp
= yy_hold_char
; /* undo effects of setting up yytext */
1886 yy_c_buf_p
= yy_cp
= yy_bp
+ 1;
1887 YY_DO_BEFORE_ACTION
; /* set up yytext again */
1888 # line 390 "<stdin>"
1892 # line 391 "<stdin>"
1896 # line 392 "<stdin>"
1897 BEGIN(SECT2
); return ( ']' );
1900 # line 395 "<stdin>"
1902 yylval
= myctoi( yytext
);
1907 # line 400 "<stdin>"
1911 # line 401 "<stdin>"
1912 BEGIN(SECT2
); return ( '}' );
1915 # line 403 "<stdin>"
1917 synerr( "bad character inside {}'s" );
1923 # line 409 "<stdin>"
1925 synerr( "missing }" );
1932 # line 417 "<stdin>"
1933 synerr( "bad name in {}'s" ); BEGIN(SECT2
);
1936 # line 418 "<stdin>"
1937 synerr( "missing }" ); ++linenum
; BEGIN(SECT2
);
1940 # line 421 "<stdin>"
1944 # line 422 "<stdin>"
1947 CHECK_REJECT(yytext
);
1951 # line 426 "<stdin>"
1954 CHECK_YYMORE(yytext
);
1958 # line 430 "<stdin>"
1962 # line 431 "<stdin>"
1966 if ( bracelevel
== 0 ||
1967 (doing_codeblock
&& indented_code
) )
1969 if ( ! doing_codeblock
)
1970 fputs( "\tYY_BREAK\n", tmpactfl
);
1972 doing_codeblock
= false;
1977 /* Reject and YYmore() are checked for above, in PERCENT_BRACE_ACTION */
1979 # line 447 "<stdin>"
1980 ACTION_ECHO
; ++bracelevel
;
1983 # line 448 "<stdin>"
1984 ACTION_ECHO
; --bracelevel
;
1987 # line 449 "<stdin>"
1991 # line 450 "<stdin>"
1995 # line 451 "<stdin>"
1996 ACTION_ECHO
; BEGIN(ACTION_COMMENT
);
1999 # line 452 "<stdin>"
2000 ACTION_ECHO
; /* character constant */
2003 # line 453 "<stdin>"
2004 ACTION_ECHO
; BEGIN(ACTION_STRING
);
2007 # line 454 "<stdin>"
2011 if ( bracelevel
== 0 )
2013 fputs( "\tYY_BREAK\n", tmpactfl
);
2019 # line 463 "<stdin>"
2023 # line 465 "<stdin>"
2024 ACTION_ECHO
; BEGIN(ACTION
);
2027 # line 466 "<stdin>"
2031 # line 467 "<stdin>"
2035 # line 468 "<stdin>"
2036 ++linenum
; ACTION_ECHO
;
2039 # line 469 "<stdin>"
2043 # line 471 "<stdin>"
2047 # line 472 "<stdin>"
2051 # line 473 "<stdin>"
2052 ++linenum
; ACTION_ECHO
;
2055 # line 474 "<stdin>"
2056 ACTION_ECHO
; BEGIN(ACTION
);
2059 # line 475 "<stdin>"
2062 case YY_STATE_EOF(ACTION
):
2063 case YY_STATE_EOF(ACTION_COMMENT
):
2064 case YY_STATE_EOF(ACTION_STRING
):
2065 # line 477 "<stdin>"
2067 synerr( "EOF encountered inside an action" );
2072 # line 483 "<stdin>"
2074 yylval
= myesc( yytext
);
2079 # line 488 "<stdin>"
2081 yylval
= myesc( yytext
);
2087 # line 495 "<stdin>"
2091 # line 496 "<stdin>"
2092 YY_FATAL_ERROR( "flex scanner jammed" );
2094 case YY_STATE_EOF(INITIAL
):
2095 case YY_STATE_EOF(SECT2
):
2096 case YY_STATE_EOF(SECT3
):
2097 case YY_STATE_EOF(CODEBLOCK
):
2098 case YY_STATE_EOF(PICKUPDEF
):
2099 case YY_STATE_EOF(SC
):
2100 case YY_STATE_EOF(CARETISBOL
):
2101 case YY_STATE_EOF(NUM
):
2102 case YY_STATE_EOF(QUOTE
):
2103 case YY_STATE_EOF(FIRSTCCL
):
2104 case YY_STATE_EOF(CCL
):
2105 case YY_STATE_EOF(RECOVER
):
2106 case YY_STATE_EOF(BRACEERROR
):
2107 case YY_STATE_EOF(C_COMMENT
):
2108 case YY_STATE_EOF(PERCENT_BRACE_ACTION
):
2109 case YY_STATE_EOF(USED_LIST
):
2110 case YY_STATE_EOF(CODEBLOCK_2
):
2111 case YY_STATE_EOF(XLATION
):
2114 case YY_END_OF_BUFFER
:
2116 /* amount of text matched not including the EOB char */
2117 int yy_amount_of_matched_text
= yy_cp
- yytext
- 1;
2119 /* undo the effects of YY_DO_BEFORE_ACTION */
2120 *yy_cp
= yy_hold_char
;
2122 /* note that here we test for yy_c_buf_p "<=" to the position
2123 * of the first EOB in the buffer, since yy_c_buf_p will
2124 * already have been incremented past the NUL character
2125 * (since all states make transitions on EOB to the end-
2126 * of-buffer state). Contrast this with the test in yyinput().
2128 if ( yy_c_buf_p
<= &yy_current_buffer
->yy_ch_buf
[yy_n_chars
] )
2129 /* this was really a NUL */
2131 yy_ste_type yy_next_state
;
2133 yy_c_buf_p
= yytext
+ yy_amount_of_matched_text
;
2135 yy_current_state
= yy_get_previous_state();
2137 /* okay, we're now positioned to make the
2138 * NUL transition. We couldn't have
2139 * yy_get_previous_state() go ahead and do it
2140 * for us because it doesn't know how to deal
2141 * with the possibility of jamming (and we
2142 * don't want to build jamming into it because
2143 * then it will run more slowly)
2146 yy_next_state
= yy_try_NUL_trans( yy_current_state
);
2148 yy_bp
= yytext
+ YY_MORE_ADJ
;
2150 if ( yy_next_state
)
2152 /* consume the NUL */
2153 yy_cp
= ++yy_c_buf_p
;
2154 yy_current_state
= yy_next_state
;
2160 yy_cp
= yy_last_accepting_cpos
;
2161 yy_current_state
= yy_last_accepting_state
;
2162 goto yy_find_action
;
2166 else switch ( yy_get_next_buffer() )
2168 case EOB_ACT_END_OF_FILE
:
2170 yy_did_buffer_switch_on_eof
= 0;
2174 /* note: because we've taken care in
2175 * yy_get_next_buffer() to have set up yytext,
2176 * we can now set up yy_c_buf_p so that if some
2177 * total hoser (like flex itself) wants
2178 * to call the scanner after we return the
2179 * YY_NULL, it'll still work - another YY_NULL
2180 * will get returned.
2182 yy_c_buf_p
= yytext
+ YY_MORE_ADJ
;
2184 yy_act
= YY_STATE_EOF((yy_start
- 1) / 2);
2190 if ( ! yy_did_buffer_switch_on_eof
)
2196 case EOB_ACT_CONTINUE_SCAN
:
2197 yy_c_buf_p
= yytext
+ yy_amount_of_matched_text
;
2199 yy_current_state
= yy_get_previous_state();
2202 yy_bp
= yytext
+ YY_MORE_ADJ
;
2205 case EOB_ACT_LAST_MATCH
:
2207 &yy_current_buffer
->yy_ch_buf
[yy_n_chars
];
2209 yy_current_state
= yy_get_previous_state();
2212 yy_bp
= yytext
+ YY_MORE_ADJ
;
2213 goto yy_find_action
;
2220 printf( "action # %d\n", yy_act
);
2223 "fatal flex scanner internal error--no action found" );
2229 /* yy_get_next_buffer - try to read in a new buffer
2232 * int yy_get_next_buffer();
2234 * returns a code representing an action
2235 * EOB_ACT_LAST_MATCH -
2236 * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
2237 * EOB_ACT_END_OF_FILE - end of file
2240 static int yy_get_next_buffer()
2243 register YY_CHAR
*dest
= yy_current_buffer
->yy_ch_buf
;
2244 register YY_CHAR
*source
= yytext
- 1; /* copy prev. char, too */
2245 register int number_to_move
, i
;
2248 if ( yy_c_buf_p
> &yy_current_buffer
->yy_ch_buf
[yy_n_chars
+ 1] )
2250 "fatal flex scanner internal error--end of buffer missed" );
2252 /* try to read more data */
2254 /* first move last chars to start of buffer */
2255 number_to_move
= yy_c_buf_p
- yytext
;
2257 for ( i
= 0; i
< number_to_move
; ++i
)
2258 *(dest
++) = *(source
++);
2260 if ( yy_current_buffer
->yy_eof_status
!= EOF_NOT_SEEN
)
2261 /* don't do the read, it's not guaranteed to return an EOF,
2268 int num_to_read
= yy_current_buffer
->yy_buf_size
- number_to_move
- 1;
2270 if ( num_to_read
> YY_READ_BUF_SIZE
)
2271 num_to_read
= YY_READ_BUF_SIZE
;
2273 else if ( num_to_read
<= 0 )
2274 YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" );
2276 /* read in more data */
2277 YY_INPUT( (&yy_current_buffer
->yy_ch_buf
[number_to_move
]),
2278 yy_n_chars
, num_to_read
);
2281 if ( yy_n_chars
== 0 )
2283 if ( number_to_move
== 1 )
2285 ret_val
= EOB_ACT_END_OF_FILE
;
2286 yy_current_buffer
->yy_eof_status
= EOF_DONE
;
2291 ret_val
= EOB_ACT_LAST_MATCH
;
2292 yy_current_buffer
->yy_eof_status
= EOF_PENDING
;
2297 ret_val
= EOB_ACT_CONTINUE_SCAN
;
2299 yy_n_chars
+= number_to_move
;
2300 yy_current_buffer
->yy_ch_buf
[yy_n_chars
] = YY_END_OF_BUFFER_CHAR
;
2301 yy_current_buffer
->yy_ch_buf
[yy_n_chars
+ 1] = YY_END_OF_BUFFER_CHAR
;
2303 /* yytext begins at the second character in yy_ch_buf; the first
2304 * character is the one which preceded it before reading in the latest
2305 * buffer; it needs to be kept around in case it's a newline, so
2306 * yy_get_previous_state() will have with '^' rules active
2309 yytext
= &yy_current_buffer
->yy_ch_buf
[1];
2315 /* yy_get_previous_state - get the state just before the EOB char was reached
2318 * yy_ste_type yy_get_previous_state();
2321 static yy_ste_type
yy_get_previous_state()
2324 register yy_ste_type yy_current_state
;
2325 register YY_CHAR
*yy_cp
;
2327 register YY_CHAR
*yy_bp
= yytext
;
2329 yy_current_state
= yy_start
;
2330 if ( yy_bp
[-1] == '\n' )
2333 for ( yy_cp
= yytext
+ YY_MORE_ADJ
; yy_cp
< yy_c_buf_p
; ++yy_cp
)
2335 register YY_CHAR yy_c
= (*yy_cp
? yy_ec
[*yy_cp
] : 1);
2336 if ( yy_accept
[yy_current_state
] )
2338 yy_last_accepting_state
= yy_current_state
;
2339 yy_last_accepting_cpos
= yy_cp
;
2341 while ( yy_chk
[yy_base
[yy_current_state
] + yy_c
] != yy_current_state
)
2343 yy_current_state
= yy_def
[yy_current_state
];
2345 yy_current_state
= yy_nxt
[yy_base
[yy_current_state
] + yy_c
];
2348 return ( yy_current_state
);
2352 /* yy_try_NUL_trans - try to make a transition on the NUL character
2355 * next_state = yy_try_NUL_trans( current_state );
2358 #ifdef YY_USE_PROTOS
2359 static yy_ste_type
yy_try_NUL_trans( register yy_ste_type yy_current_state
)
2361 static yy_ste_type
yy_try_NUL_trans( yy_current_state
)
2362 register yy_ste_type yy_current_state
;
2366 register int yy_is_jam
;
2367 register YY_CHAR
*yy_cp
= yy_c_buf_p
;
2369 register YY_CHAR yy_c
= 1;
2370 if ( yy_accept
[yy_current_state
] )
2372 yy_last_accepting_state
= yy_current_state
;
2373 yy_last_accepting_cpos
= yy_cp
;
2375 while ( yy_chk
[yy_base
[yy_current_state
] + yy_c
] != yy_current_state
)
2377 yy_current_state
= yy_def
[yy_current_state
];
2379 yy_current_state
= yy_nxt
[yy_base
[yy_current_state
] + yy_c
];
2380 yy_is_jam
= (yy_current_state
== 340);
2382 return ( yy_is_jam
? 0 : yy_current_state
);
2386 #ifdef YY_USE_PROTOS
2387 static void yyunput( YY_CHAR c
, register YY_CHAR
*yy_bp
)
2389 static void yyunput( c
, yy_bp
)
2391 register YY_CHAR
*yy_bp
;
2395 register YY_CHAR
*yy_cp
= yy_c_buf_p
;
2397 /* undo effects of setting up yytext */
2398 *yy_cp
= yy_hold_char
;
2400 if ( yy_cp
< yy_current_buffer
->yy_ch_buf
+ 2 )
2401 { /* need to shift things up to make room */
2402 register int number_to_move
= yy_n_chars
+ 2; /* +2 for EOB chars */
2403 register YY_CHAR
*dest
=
2404 &yy_current_buffer
->yy_ch_buf
[yy_current_buffer
->yy_buf_size
+ 2];
2405 register YY_CHAR
*source
=
2406 &yy_current_buffer
->yy_ch_buf
[number_to_move
];
2408 while ( source
> yy_current_buffer
->yy_ch_buf
)
2409 *--dest
= *--source
;
2411 yy_cp
+= dest
- source
;
2412 yy_bp
+= dest
- source
;
2413 yy_n_chars
= yy_current_buffer
->yy_buf_size
;
2415 if ( yy_cp
< yy_current_buffer
->yy_ch_buf
+ 2 )
2416 YY_FATAL_ERROR( "flex scanner push-back overflow" );
2419 if ( yy_cp
> yy_bp
&& yy_cp
[-1] == '\n' )
2424 /* note: the formal parameter *must* be called "yy_bp" for this
2425 * macro to now work correctly
2427 YY_DO_BEFORE_ACTION
; /* set up yytext again */
2432 static int yyinput()
2439 YY_CHAR
*yy_cp
= yy_c_buf_p
;
2441 *yy_cp
= yy_hold_char
;
2443 if ( *yy_c_buf_p
== YY_END_OF_BUFFER_CHAR
)
2445 /* yy_c_buf_p now points to the character we want to return.
2446 * If this occurs *before* the EOB characters, then it's a
2447 * valid NUL; if not, then we've hit the end of the buffer.
2449 if ( yy_c_buf_p
< &yy_current_buffer
->yy_ch_buf
[yy_n_chars
] )
2450 /* this was really a NUL */
2454 { /* need more input */
2455 yytext
= yy_c_buf_p
;
2458 switch ( yy_get_next_buffer() )
2460 case EOB_ACT_END_OF_FILE
:
2464 yy_c_buf_p
= yytext
+ YY_MORE_ADJ
;
2471 return ( yyinput() );
2478 case EOB_ACT_CONTINUE_SCAN
:
2479 yy_c_buf_p
= yytext
+ YY_MORE_ADJ
;
2482 case EOB_ACT_LAST_MATCH
:
2484 YY_FATAL_ERROR( "unexpected last match in yyinput()" );
2486 YY_FATAL_ERROR( "unexpected last match in input()" );
2493 yy_hold_char
= *++yy_c_buf_p
;
2499 #ifdef YY_USE_PROTOS
2500 void yyrestrt( FILE *input_file
)
2502 void yyrestrt( input_file
)
2507 yyinbffr( yy_current_buffer
, input_file
);
2512 #ifdef YY_USE_PROTOS
2513 void yyswtobf( YY_BUFFER_STATE new_buffer
)
2515 void yyswtobf( new_buffer
)
2516 YY_BUFFER_STATE new_buffer
;
2520 if ( yy_current_buffer
== new_buffer
)
2523 if ( yy_current_buffer
)
2525 /* flush out information for old buffer */
2526 *yy_c_buf_p
= yy_hold_char
;
2527 yy_current_buffer
->yy_buf_pos
= yy_c_buf_p
;
2528 yy_current_buffer
->yy_n_chars
= yy_n_chars
;
2531 yy_current_buffer
= new_buffer
;
2534 /* we don't actually know whether we did this switch during
2535 * EOF (yywrap()) processing, but the only time this flag
2536 * is looked at is after yywrap() is called, so it's safe
2537 * to go ahead and always set it.
2539 yy_did_buffer_switch_on_eof
= 1;
2543 #ifdef YY_USE_PROTOS
2544 void yyldbfst( void )
2550 yy_n_chars
= yy_current_buffer
->yy_n_chars
;
2551 yytext
= yy_c_buf_p
= yy_current_buffer
->yy_buf_pos
;
2552 yyin
= yy_current_buffer
->yy_input_file
;
2553 yy_hold_char
= *yy_c_buf_p
;
2557 #ifdef YY_USE_PROTOS
2558 YY_BUFFER_STATE
yycrbffr( FILE *file
, int size
)
2560 YY_BUFFER_STATE
yycrbffr( file
, size
)
2568 b
= (YY_BUFFER_STATE
) malloc( sizeof( struct yy_buffer_state
) );
2571 YY_FATAL_ERROR( "out of dynamic memory in yycrbffr()" );
2573 b
->yy_buf_size
= size
;
2575 /* yy_ch_buf has to be 2 characters longer than the size given because
2576 * we need to put in 2 end-of-buffer characters.
2578 b
->yy_ch_buf
= (YY_CHAR
*) malloc( (unsigned) (b
->yy_buf_size
+ 2) );
2580 if ( ! b
->yy_ch_buf
)
2581 YY_FATAL_ERROR( "out of dynamic memory in yycrbffr()" );
2583 yyinbffr( b
, file
);
2589 #ifdef YY_USE_PROTOS
2590 void yydlbffr( YY_BUFFER_STATE b
)
2597 if ( b
== yy_current_buffer
)
2598 yy_current_buffer
= (YY_BUFFER_STATE
) 0;
2600 free( (char *) b
->yy_ch_buf
);
2605 #ifdef YY_USE_PROTOS
2606 void yyinbffr( YY_BUFFER_STATE b
, FILE *file
)
2608 void yyinbffr( b
, file
)
2614 b
->yy_input_file
= file
;
2616 /* we put in the '\n' and start reading from [1] so that an
2617 * initial match-at-newline will be true.
2620 b
->yy_ch_buf
[0] = '\n';
2623 /* we always need two end-of-buffer characters. The first causes
2624 * a transition to the end-of-buffer state. The second causes
2625 * a jam in that state.
2627 b
->yy_ch_buf
[1] = YY_END_OF_BUFFER_CHAR
;
2628 b
->yy_ch_buf
[2] = YY_END_OF_BUFFER_CHAR
;
2630 b
->yy_buf_pos
= &b
->yy_ch_buf
[1];
2632 b
->yy_eof_status
= EOF_NOT_SEEN
;
2634 # line 496 "<stdin>"
2641 if ( --ninfiles
> 0 )
2643 stinpfle( *++inp_fles
);
2652 /* stinpfle - open the given file (if NULL, stdin) for scanning */
2654 void stinpfle( file
)
2661 yyin
= fopen( infilnam
, "r" );
2664 lerrsf( "can't open %s", file
);
2670 infilnam
= "<stdin>";