No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / lib / sl / slc-lex.c
blobf6ff4de0756b13358f17a6dd6e19ba307753f378
2 #line 3 "slc-lex.c"
4 #define YY_INT_ALIGNED short int
6 /* A lexical scanner generated by flex */
8 #define FLEX_SCANNER
9 #define YY_FLEX_MAJOR_VERSION 2
10 #define YY_FLEX_MINOR_VERSION 5
11 #define YY_FLEX_SUBMINOR_VERSION 33
12 #if YY_FLEX_SUBMINOR_VERSION > 0
13 #define FLEX_BETA
14 #endif
16 /* First, we deal with platform-specific or compiler-specific issues. */
18 /* begin standard C headers. */
19 #include <stdio.h>
20 #include <string.h>
21 #include <errno.h>
22 #include <stdlib.h>
24 /* end standard C headers. */
26 /* flex integer type definitions */
28 #ifndef FLEXINT_H
29 #define FLEXINT_H
31 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
33 #if __STDC_VERSION__ >= 199901L
35 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
36 * if you want the limit (max/min) macros for int types.
38 #ifndef __STDC_LIMIT_MACROS
39 #define __STDC_LIMIT_MACROS 1
40 #endif
42 #include <inttypes.h>
43 typedef int8_t flex_int8_t;
44 typedef uint8_t flex_uint8_t;
45 typedef int16_t flex_int16_t;
46 typedef uint16_t flex_uint16_t;
47 typedef int32_t flex_int32_t;
48 typedef uint32_t flex_uint32_t;
49 #else
50 typedef signed char flex_int8_t;
51 typedef short int flex_int16_t;
52 typedef int flex_int32_t;
53 typedef unsigned char flex_uint8_t;
54 typedef unsigned short int flex_uint16_t;
55 typedef unsigned int flex_uint32_t;
56 #endif /* ! C99 */
58 /* Limits of integral types. */
59 #ifndef INT8_MIN
60 #define INT8_MIN (-128)
61 #endif
62 #ifndef INT16_MIN
63 #define INT16_MIN (-32767-1)
64 #endif
65 #ifndef INT32_MIN
66 #define INT32_MIN (-2147483647-1)
67 #endif
68 #ifndef INT8_MAX
69 #define INT8_MAX (127)
70 #endif
71 #ifndef INT16_MAX
72 #define INT16_MAX (32767)
73 #endif
74 #ifndef INT32_MAX
75 #define INT32_MAX (2147483647)
76 #endif
77 #ifndef UINT8_MAX
78 #define UINT8_MAX (255U)
79 #endif
80 #ifndef UINT16_MAX
81 #define UINT16_MAX (65535U)
82 #endif
83 #ifndef UINT32_MAX
84 #define UINT32_MAX (4294967295U)
85 #endif
87 #endif /* ! FLEXINT_H */
89 #ifdef __cplusplus
91 /* The "const" storage-class-modifier is valid. */
92 #define YY_USE_CONST
94 #else /* ! __cplusplus */
96 #if __STDC__
98 #define YY_USE_CONST
100 #endif /* __STDC__ */
101 #endif /* ! __cplusplus */
103 #ifdef YY_USE_CONST
104 #define yyconst const
105 #else
106 #define yyconst
107 #endif
109 /* Returned upon end-of-file. */
110 #define YY_NULL 0
112 /* Promotes a possibly negative, possibly signed char to an unsigned
113 * integer for use as an array index. If the signed char is negative,
114 * we want to instead treat it as an 8-bit unsigned char, hence the
115 * double cast.
117 #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
119 /* Enter a start condition. This macro really ought to take a parameter,
120 * but we do it the disgusting crufty way forced on us by the ()-less
121 * definition of BEGIN.
123 #define BEGIN (yy_start) = 1 + 2 *
125 /* Translate the current start state into a value that can be later handed
126 * to BEGIN to return to the state. The YYSTATE alias is for lex
127 * compatibility.
129 #define YY_START (((yy_start) - 1) / 2)
130 #define YYSTATE YY_START
132 /* Action number for EOF rule of a given start state. */
133 #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
135 /* Special action meaning "start processing a new file". */
136 #define YY_NEW_FILE yyrestart(yyin )
138 #define YY_END_OF_BUFFER_CHAR 0
140 /* Size of default input buffer. */
141 #ifndef YY_BUF_SIZE
142 #define YY_BUF_SIZE 16384
143 #endif
145 /* The state buf must be large enough to hold one state per character in the main buffer.
147 #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
149 #ifndef YY_TYPEDEF_YY_BUFFER_STATE
150 #define YY_TYPEDEF_YY_BUFFER_STATE
151 typedef struct yy_buffer_state *YY_BUFFER_STATE;
152 #endif
154 extern int yyleng;
156 extern FILE *yyin, *yyout;
158 #define EOB_ACT_CONTINUE_SCAN 0
159 #define EOB_ACT_END_OF_FILE 1
160 #define EOB_ACT_LAST_MATCH 2
162 #define YY_LESS_LINENO(n)
164 /* Return all but the first "n" matched characters back to the input stream. */
165 #define yyless(n) \
166 do \
168 /* Undo effects of setting up yytext. */ \
169 int yyless_macro_arg = (n); \
170 YY_LESS_LINENO(yyless_macro_arg);\
171 *yy_cp = (yy_hold_char); \
172 YY_RESTORE_YY_MORE_OFFSET \
173 (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
174 YY_DO_BEFORE_ACTION; /* set up yytext again */ \
176 while ( 0 )
178 #define unput(c) yyunput( c, (yytext_ptr) )
180 /* The following is because we cannot portably get our hands on size_t
181 * (without autoconf's help, which isn't available because we want
182 * flex-generated scanners to compile on their own).
185 #ifndef YY_TYPEDEF_YY_SIZE_T
186 #define YY_TYPEDEF_YY_SIZE_T
187 typedef unsigned int yy_size_t;
188 #endif
190 #ifndef YY_STRUCT_YY_BUFFER_STATE
191 #define YY_STRUCT_YY_BUFFER_STATE
192 struct yy_buffer_state
194 FILE *yy_input_file;
196 char *yy_ch_buf; /* input buffer */
197 char *yy_buf_pos; /* current position in input buffer */
199 /* Size of input buffer in bytes, not including room for EOB
200 * characters.
202 yy_size_t yy_buf_size;
204 /* Number of characters read into yy_ch_buf, not including EOB
205 * characters.
207 int yy_n_chars;
209 /* Whether we "own" the buffer - i.e., we know we created it,
210 * and can realloc() it to grow it, and should free() it to
211 * delete it.
213 int yy_is_our_buffer;
215 /* Whether this is an "interactive" input source; if so, and
216 * if we're using stdio for input, then we want to use getc()
217 * instead of fread(), to make sure we stop fetching input after
218 * each newline.
220 int yy_is_interactive;
222 /* Whether we're considered to be at the beginning of a line.
223 * If so, '^' rules will be active on the next match, otherwise
224 * not.
226 int yy_at_bol;
228 int yy_bs_lineno; /**< The line count. */
229 int yy_bs_column; /**< The column count. */
231 /* Whether to try to fill the input buffer when we reach the
232 * end of it.
234 int yy_fill_buffer;
236 int yy_buffer_status;
238 #define YY_BUFFER_NEW 0
239 #define YY_BUFFER_NORMAL 1
240 /* When an EOF's been seen but there's still some text to process
241 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
242 * shouldn't try reading from the input source any more. We might
243 * still have a bunch of tokens to match, though, because of
244 * possible backing-up.
246 * When we actually see the EOF, we change the status to "new"
247 * (via yyrestart()), so that the user can continue scanning by
248 * just pointing yyin at a new input file.
250 #define YY_BUFFER_EOF_PENDING 2
253 #endif /* !YY_STRUCT_YY_BUFFER_STATE */
255 /* Stack of input buffers. */
256 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
257 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
258 static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
260 /* We provide macros for accessing buffer states in case in the
261 * future we want to put the buffer states in a more general
262 * "scanner state".
264 * Returns the top of the stack, or NULL.
266 #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
267 ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
268 : NULL)
270 /* Same as previous macro, but useful when we know that the buffer stack is not
271 * NULL or when we need an lvalue. For internal use only.
273 #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
275 /* yy_hold_char holds the character lost when yytext is formed. */
276 static char yy_hold_char;
277 static int yy_n_chars; /* number of characters read into yy_ch_buf */
278 int yyleng;
280 /* Points to current character in buffer. */
281 static char *yy_c_buf_p = (char *) 0;
282 static int yy_init = 0; /* whether we need to initialize */
283 static int yy_start = 0; /* start state number */
285 /* Flag which is used to allow yywrap()'s to do buffer switches
286 * instead of setting up a fresh yyin. A bit of a hack ...
288 static int yy_did_buffer_switch_on_eof;
290 void yyrestart (FILE *input_file );
291 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
292 YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
293 void yy_delete_buffer (YY_BUFFER_STATE b );
294 void yy_flush_buffer (YY_BUFFER_STATE b );
295 void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
296 void yypop_buffer_state (void );
298 static void yyensure_buffer_stack (void );
299 static void yy_load_buffer_state (void );
300 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
302 #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
304 YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
305 YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
306 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
308 void *yyalloc (yy_size_t );
309 void *yyrealloc (void *,yy_size_t );
310 void yyfree (void * );
312 #define yy_new_buffer yy_create_buffer
314 #define yy_set_interactive(is_interactive) \
316 if ( ! YY_CURRENT_BUFFER ){ \
317 yyensure_buffer_stack (); \
318 YY_CURRENT_BUFFER_LVALUE = \
319 yy_create_buffer(yyin,YY_BUF_SIZE ); \
321 YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
324 #define yy_set_bol(at_bol) \
326 if ( ! YY_CURRENT_BUFFER ){\
327 yyensure_buffer_stack (); \
328 YY_CURRENT_BUFFER_LVALUE = \
329 yy_create_buffer(yyin,YY_BUF_SIZE ); \
331 YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
334 #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
336 /* Begin user sect3 */
338 typedef unsigned char YY_CHAR;
340 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
342 typedef int yy_state_type;
344 extern int yylineno;
346 int yylineno = 1;
348 extern char *yytext;
349 #define yytext_ptr yytext
351 static yy_state_type yy_get_previous_state (void );
352 static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
353 static int yy_get_next_buffer (void );
354 static void yy_fatal_error (yyconst char msg[] );
356 /* Done after the current pattern has been matched and before the
357 * corresponding action - sets up yytext.
359 #define YY_DO_BEFORE_ACTION \
360 (yytext_ptr) = yy_bp; \
361 yyleng = (size_t) (yy_cp - yy_bp); \
362 (yy_hold_char) = *yy_cp; \
363 *yy_cp = '\0'; \
364 (yy_c_buf_p) = yy_cp;
366 #define YY_NUM_RULES 7
367 #define YY_END_OF_BUFFER 8
368 /* This struct is not used in this scanner,
369 but its presence is necessary. */
370 struct yy_trans_info
372 flex_int32_t yy_verify;
373 flex_int32_t yy_nxt;
375 static yyconst flex_int16_t yy_accept[14] =
376 { 0,
377 0, 0, 8, 7, 6, 3, 2, 7, 5, 1,
378 4, 1, 0
381 static yyconst flex_int32_t yy_ec[256] =
382 { 0,
383 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
384 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
385 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
386 1, 2, 1, 4, 1, 1, 1, 1, 1, 1,
387 1, 5, 1, 1, 6, 1, 7, 6, 6, 6,
388 6, 6, 6, 6, 6, 6, 6, 1, 1, 1,
389 8, 1, 1, 1, 9, 9, 9, 9, 9, 9,
390 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
391 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
392 1, 1, 1, 1, 6, 1, 9, 9, 9, 9,
394 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
395 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
396 9, 9, 8, 1, 8, 1, 1, 1, 1, 1,
397 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
398 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
399 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
400 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
401 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
402 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
403 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
405 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
406 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
407 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
408 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
409 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
410 1, 1, 1, 1, 1
413 static yyconst flex_int32_t yy_meta[10] =
414 { 0,
415 1, 1, 1, 1, 1, 2, 1, 1, 2
418 static yyconst flex_int16_t yy_base[15] =
419 { 0,
420 0, 0, 12, 13, 13, 13, 13, 6, 13, 0,
421 13, 0, 13, 8
424 static yyconst flex_int16_t yy_def[15] =
425 { 0,
426 13, 1, 13, 13, 13, 13, 13, 13, 13, 14,
427 13, 14, 0, 13
430 static yyconst flex_int16_t yy_nxt[23] =
431 { 0,
432 4, 5, 6, 7, 4, 4, 8, 9, 10, 12,
433 11, 13, 3, 13, 13, 13, 13, 13, 13, 13,
434 13, 13
437 static yyconst flex_int16_t yy_chk[23] =
438 { 0,
439 1, 1, 1, 1, 1, 1, 1, 1, 1, 14,
440 8, 3, 13, 13, 13, 13, 13, 13, 13, 13,
441 13, 13
444 static yy_state_type yy_last_accepting_state;
445 static char *yy_last_accepting_cpos;
447 extern int yy_flex_debug;
448 int yy_flex_debug = 0;
450 /* The intent behind this definition is that it'll catch
451 * any uses of REJECT which flex missed.
453 #define REJECT reject_used_but_not_detected
454 #define yymore() yymore_used_but_not_detected
455 #define YY_MORE_ADJ 0
456 #define YY_RESTORE_YY_MORE_OFFSET
457 char *yytext;
458 #line 1 "slc-lex.l"
459 #line 2 "slc-lex.l"
461 * Copyright (c) 2004 Kungliga Tekniska Högskolan
462 * (Royal Institute of Technology, Stockholm, Sweden).
463 * All rights reserved.
465 * Redistribution and use in source and binary forms, with or without
466 * modification, are permitted provided that the following conditions
467 * are met:
469 * 1. Redistributions of source code must retain the above copyright
470 * notice, this list of conditions and the following disclaimer.
472 * 2. Redistributions in binary form must reproduce the above copyright
473 * notice, this list of conditions and the following disclaimer in the
474 * documentation and/or other materials provided with the distribution.
476 * 3. Neither the name of the Institute nor the names of its contributors
477 * may be used to endorse or promote products derived from this software
478 * without specific prior written permission.
480 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
481 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
482 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
483 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
484 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
485 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
486 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
487 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
488 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
489 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
490 * SUCH DAMAGE.
493 /* $Heimdal: slc-lex.l 15118 2005-05-10 22:19:01Z lha $
494 $NetBSD$ */
496 #undef ECHO
498 #include <stdio.h>
499 #include <string.h>
500 #include <stdarg.h>
501 #include <stdlib.h>
502 #include "slc.h"
503 #include "slc-gram.h"
504 unsigned lineno = 1;
506 static void handle_comment(void);
507 static char * handle_string(void);
509 #define YY_NO_UNPUT
511 #undef ECHO
513 #line 513 "slc-lex.c"
515 #define INITIAL 0
517 #ifndef YY_NO_UNISTD_H
518 /* Special case for "unistd.h", since it is non-ANSI. We include it way
519 * down here because we want the user's section 1 to have been scanned first.
520 * The user has a chance to override it with an option.
522 #include <unistd.h>
523 #endif
525 #ifndef YY_EXTRA_TYPE
526 #define YY_EXTRA_TYPE void *
527 #endif
529 static int yy_init_globals (void );
531 /* Macros after this point can all be overridden by user definitions in
532 * section 1.
535 #ifndef YY_SKIP_YYWRAP
536 #ifdef __cplusplus
537 extern "C" int yywrap (void );
538 #else
539 extern int yywrap (void );
540 #endif
541 #endif
543 static void yyunput (int c,char *buf_ptr );
545 #ifndef yytext_ptr
546 static void yy_flex_strncpy (char *,yyconst char *,int );
547 #endif
549 #ifdef YY_NEED_STRLEN
550 static int yy_flex_strlen (yyconst char * );
551 #endif
553 #ifndef YY_NO_INPUT
555 #ifdef __cplusplus
556 static int yyinput (void );
557 #else
558 static int input (void );
559 #endif
561 #endif
563 /* Amount of stuff to slurp up with each read. */
564 #ifndef YY_READ_BUF_SIZE
565 #define YY_READ_BUF_SIZE 8192
566 #endif
568 /* Copy whatever the last rule matched to the standard output. */
569 #ifndef ECHO
570 /* This used to be an fputs(), but since the string might contain NUL's,
571 * we now use fwrite().
573 #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
574 #endif
576 /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
577 * is returned in "result".
579 #ifndef YY_INPUT
580 #define YY_INPUT(buf,result,max_size) \
581 if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
583 int c = '*'; \
584 size_t n; \
585 for ( n = 0; n < max_size && \
586 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
587 buf[n] = (char) c; \
588 if ( c == '\n' ) \
589 buf[n++] = (char) c; \
590 if ( c == EOF && ferror( yyin ) ) \
591 YY_FATAL_ERROR( "input in flex scanner failed" ); \
592 result = n; \
594 else \
596 errno=0; \
597 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
599 if( errno != EINTR) \
601 YY_FATAL_ERROR( "input in flex scanner failed" ); \
602 break; \
604 errno=0; \
605 clearerr(yyin); \
610 #endif
612 /* No semi-colon after return; correct usage is to write "yyterminate();" -
613 * we don't want an extra ';' after the "return" because that will cause
614 * some compilers to complain about unreachable statements.
616 #ifndef yyterminate
617 #define yyterminate() return YY_NULL
618 #endif
620 /* Number of entries by which start-condition stack grows. */
621 #ifndef YY_START_STACK_INCR
622 #define YY_START_STACK_INCR 25
623 #endif
625 /* Report a fatal error. */
626 #ifndef YY_FATAL_ERROR
627 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
628 #endif
630 /* end tables serialization structures and prototypes */
632 /* Default declaration of generated scanner - a define so the user can
633 * easily add parameters.
635 #ifndef YY_DECL
636 #define YY_DECL_IS_OURS 1
638 extern int yylex (void);
640 #define YY_DECL int yylex (void)
641 #endif /* !YY_DECL */
643 /* Code executed at the beginning of each rule, after yytext and yyleng
644 * have been set up.
646 #ifndef YY_USER_ACTION
647 #define YY_USER_ACTION
648 #endif
650 /* Code executed at the end of each rule. */
651 #ifndef YY_BREAK
652 #define YY_BREAK break;
653 #endif
655 #define YY_RULE_SETUP \
656 YY_USER_ACTION
658 /** The main scanner function which does all the work.
660 YY_DECL
662 register yy_state_type yy_current_state;
663 register char *yy_cp, *yy_bp;
664 register int yy_act;
666 #line 55 "slc-lex.l"
668 #line 668 "slc-lex.c"
670 if ( !(yy_init) )
672 (yy_init) = 1;
674 #ifdef YY_USER_INIT
675 YY_USER_INIT;
676 #endif
678 if ( ! (yy_start) )
679 (yy_start) = 1; /* first start state */
681 if ( ! yyin )
682 yyin = stdin;
684 if ( ! yyout )
685 yyout = stdout;
687 if ( ! YY_CURRENT_BUFFER ) {
688 yyensure_buffer_stack ();
689 YY_CURRENT_BUFFER_LVALUE =
690 yy_create_buffer(yyin,YY_BUF_SIZE );
693 yy_load_buffer_state( );
696 while ( 1 ) /* loops until end-of-file is reached */
698 yy_cp = (yy_c_buf_p);
700 /* Support of yytext. */
701 *yy_cp = (yy_hold_char);
703 /* yy_bp points to the position in yy_ch_buf of the start of
704 * the current run.
706 yy_bp = yy_cp;
708 yy_current_state = (yy_start);
709 yy_match:
712 register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
713 if ( yy_accept[yy_current_state] )
715 (yy_last_accepting_state) = yy_current_state;
716 (yy_last_accepting_cpos) = yy_cp;
718 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
720 yy_current_state = (int) yy_def[yy_current_state];
721 if ( yy_current_state >= 14 )
722 yy_c = yy_meta[(unsigned int) yy_c];
724 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
725 ++yy_cp;
727 while ( yy_base[yy_current_state] != 13 );
729 yy_find_action:
730 yy_act = yy_accept[yy_current_state];
731 if ( yy_act == 0 )
732 { /* have to back up */
733 yy_cp = (yy_last_accepting_cpos);
734 yy_current_state = (yy_last_accepting_state);
735 yy_act = yy_accept[yy_current_state];
738 YY_DO_BEFORE_ACTION;
740 do_action: /* This label is used only to access EOF actions. */
742 switch ( yy_act )
743 { /* beginning of action switch */
744 case 0: /* must back up */
745 /* undo the effects of YY_DO_BEFORE_ACTION */
746 *yy_cp = (yy_hold_char);
747 yy_cp = (yy_last_accepting_cpos);
748 yy_current_state = (yy_last_accepting_state);
749 goto yy_find_action;
751 case 1:
752 YY_RULE_SETUP
753 #line 56 "slc-lex.l"
755 yylval.string = strdup ((const char *)yytext);
756 return LITERAL;
758 YY_BREAK
759 case 2:
760 YY_RULE_SETUP
761 #line 60 "slc-lex.l"
762 { yylval.string = handle_string(); return STRING; }
763 YY_BREAK
764 case 3:
765 /* rule 3 can match eol */
766 YY_RULE_SETUP
767 #line 61 "slc-lex.l"
768 { ++lineno; }
769 YY_BREAK
770 case 4:
771 YY_RULE_SETUP
772 #line 62 "slc-lex.l"
773 { handle_comment(); }
774 YY_BREAK
775 case 5:
776 YY_RULE_SETUP
777 #line 63 "slc-lex.l"
778 { return *yytext; }
779 YY_BREAK
780 case 6:
781 YY_RULE_SETUP
782 #line 64 "slc-lex.l"
784 YY_BREAK
785 case 7:
786 YY_RULE_SETUP
787 #line 65 "slc-lex.l"
788 ECHO;
789 YY_BREAK
790 #line 790 "slc-lex.c"
791 case YY_STATE_EOF(INITIAL):
792 yyterminate();
794 case YY_END_OF_BUFFER:
796 /* Amount of text matched not including the EOB char. */
797 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
799 /* Undo the effects of YY_DO_BEFORE_ACTION. */
800 *yy_cp = (yy_hold_char);
801 YY_RESTORE_YY_MORE_OFFSET
803 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
805 /* We're scanning a new file or input source. It's
806 * possible that this happened because the user
807 * just pointed yyin at a new source and called
808 * yylex(). If so, then we have to assure
809 * consistency between YY_CURRENT_BUFFER and our
810 * globals. Here is the right place to do so, because
811 * this is the first action (other than possibly a
812 * back-up) that will match for the new input source.
814 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
815 YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
816 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
819 /* Note that here we test for yy_c_buf_p "<=" to the position
820 * of the first EOB in the buffer, since yy_c_buf_p will
821 * already have been incremented past the NUL character
822 * (since all states make transitions on EOB to the
823 * end-of-buffer state). Contrast this with the test
824 * in input().
826 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
827 { /* This was really a NUL. */
828 yy_state_type yy_next_state;
830 (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
832 yy_current_state = yy_get_previous_state( );
834 /* Okay, we're now positioned to make the NUL
835 * transition. We couldn't have
836 * yy_get_previous_state() go ahead and do it
837 * for us because it doesn't know how to deal
838 * with the possibility of jamming (and we don't
839 * want to build jamming into it because then it
840 * will run more slowly).
843 yy_next_state = yy_try_NUL_trans( yy_current_state );
845 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
847 if ( yy_next_state )
849 /* Consume the NUL. */
850 yy_cp = ++(yy_c_buf_p);
851 yy_current_state = yy_next_state;
852 goto yy_match;
855 else
857 yy_cp = (yy_c_buf_p);
858 goto yy_find_action;
862 else switch ( yy_get_next_buffer( ) )
864 case EOB_ACT_END_OF_FILE:
866 (yy_did_buffer_switch_on_eof) = 0;
868 if ( yywrap( ) )
870 /* Note: because we've taken care in
871 * yy_get_next_buffer() to have set up
872 * yytext, we can now set up
873 * yy_c_buf_p so that if some total
874 * hoser (like flex itself) wants to
875 * call the scanner after we return the
876 * YY_NULL, it'll still work - another
877 * YY_NULL will get returned.
879 (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
881 yy_act = YY_STATE_EOF(YY_START);
882 goto do_action;
885 else
887 if ( ! (yy_did_buffer_switch_on_eof) )
888 YY_NEW_FILE;
890 break;
893 case EOB_ACT_CONTINUE_SCAN:
894 (yy_c_buf_p) =
895 (yytext_ptr) + yy_amount_of_matched_text;
897 yy_current_state = yy_get_previous_state( );
899 yy_cp = (yy_c_buf_p);
900 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
901 goto yy_match;
903 case EOB_ACT_LAST_MATCH:
904 (yy_c_buf_p) =
905 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
907 yy_current_state = yy_get_previous_state( );
909 yy_cp = (yy_c_buf_p);
910 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
911 goto yy_find_action;
913 break;
916 default:
917 YY_FATAL_ERROR(
918 "fatal flex scanner internal error--no action found" );
919 } /* end of action switch */
920 } /* end of scanning one token */
921 } /* end of yylex */
923 /* yy_get_next_buffer - try to read in a new buffer
925 * Returns a code representing an action:
926 * EOB_ACT_LAST_MATCH -
927 * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
928 * EOB_ACT_END_OF_FILE - end of file
930 static int yy_get_next_buffer (void)
932 register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
933 register char *source = (yytext_ptr);
934 register int number_to_move, i;
935 int ret_val;
937 if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
938 YY_FATAL_ERROR(
939 "fatal flex scanner internal error--end of buffer missed" );
941 if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
942 { /* Don't try to fill the buffer, so this is an EOF. */
943 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
945 /* We matched a single character, the EOB, so
946 * treat this as a final EOF.
948 return EOB_ACT_END_OF_FILE;
951 else
953 /* We matched some text prior to the EOB, first
954 * process it.
956 return EOB_ACT_LAST_MATCH;
960 /* Try to read more data. */
962 /* First move last chars to start of buffer. */
963 number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
965 for ( i = 0; i < number_to_move; ++i )
966 *(dest++) = *(source++);
968 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
969 /* don't do the read, it's not guaranteed to return an EOF,
970 * just force an EOF
972 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
974 else
976 int num_to_read =
977 YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
979 while ( num_to_read <= 0 )
980 { /* Not enough room in the buffer - grow it. */
982 /* just a shorter name for the current buffer */
983 YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
985 int yy_c_buf_p_offset =
986 (int) ((yy_c_buf_p) - b->yy_ch_buf);
988 if ( b->yy_is_our_buffer )
990 int new_size = b->yy_buf_size * 2;
992 if ( new_size <= 0 )
993 b->yy_buf_size += b->yy_buf_size / 8;
994 else
995 b->yy_buf_size *= 2;
997 b->yy_ch_buf = (char *)
998 /* Include room in for 2 EOB chars. */
999 yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
1001 else
1002 /* Can't grow it, we don't own it. */
1003 b->yy_ch_buf = 0;
1005 if ( ! b->yy_ch_buf )
1006 YY_FATAL_ERROR(
1007 "fatal error - scanner input buffer overflow" );
1009 (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1011 num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1012 number_to_move - 1;
1016 if ( num_to_read > YY_READ_BUF_SIZE )
1017 num_to_read = YY_READ_BUF_SIZE;
1019 /* Read in more data. */
1020 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1021 (yy_n_chars), num_to_read );
1023 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1026 if ( (yy_n_chars) == 0 )
1028 if ( number_to_move == YY_MORE_ADJ )
1030 ret_val = EOB_ACT_END_OF_FILE;
1031 yyrestart(yyin );
1034 else
1036 ret_val = EOB_ACT_LAST_MATCH;
1037 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1038 YY_BUFFER_EOF_PENDING;
1042 else
1043 ret_val = EOB_ACT_CONTINUE_SCAN;
1045 (yy_n_chars) += number_to_move;
1046 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1047 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1049 (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1051 return ret_val;
1054 /* yy_get_previous_state - get the state just before the EOB char was reached */
1056 static yy_state_type yy_get_previous_state (void)
1058 register yy_state_type yy_current_state;
1059 register char *yy_cp;
1061 yy_current_state = (yy_start);
1063 for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1065 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1066 if ( yy_accept[yy_current_state] )
1068 (yy_last_accepting_state) = yy_current_state;
1069 (yy_last_accepting_cpos) = yy_cp;
1071 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1073 yy_current_state = (int) yy_def[yy_current_state];
1074 if ( yy_current_state >= 14 )
1075 yy_c = yy_meta[(unsigned int) yy_c];
1077 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1080 return yy_current_state;
1083 /* yy_try_NUL_trans - try to make a transition on the NUL character
1085 * synopsis
1086 * next_state = yy_try_NUL_trans( current_state );
1088 static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
1090 register int yy_is_jam;
1091 register char *yy_cp = (yy_c_buf_p);
1093 register YY_CHAR yy_c = 1;
1094 if ( yy_accept[yy_current_state] )
1096 (yy_last_accepting_state) = yy_current_state;
1097 (yy_last_accepting_cpos) = yy_cp;
1099 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1101 yy_current_state = (int) yy_def[yy_current_state];
1102 if ( yy_current_state >= 14 )
1103 yy_c = yy_meta[(unsigned int) yy_c];
1105 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1106 yy_is_jam = (yy_current_state == 13);
1108 return yy_is_jam ? 0 : yy_current_state;
1111 static void yyunput (int c, register char * yy_bp )
1113 register char *yy_cp;
1115 yy_cp = (yy_c_buf_p);
1117 /* undo effects of setting up yytext */
1118 *yy_cp = (yy_hold_char);
1120 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1121 { /* need to shift things up to make room */
1122 /* +2 for EOB chars. */
1123 register int number_to_move = (yy_n_chars) + 2;
1124 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
1125 YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
1126 register char *source =
1127 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
1129 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1130 *--dest = *--source;
1132 yy_cp += (int) (dest - source);
1133 yy_bp += (int) (dest - source);
1134 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
1135 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
1137 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1138 YY_FATAL_ERROR( "flex scanner push-back overflow" );
1141 *--yy_cp = (char) c;
1143 (yytext_ptr) = yy_bp;
1144 (yy_hold_char) = *yy_cp;
1145 (yy_c_buf_p) = yy_cp;
1148 #ifndef YY_NO_INPUT
1149 #ifdef __cplusplus
1150 static int yyinput (void)
1151 #else
1152 static int input (void)
1153 #endif
1156 int c;
1158 *(yy_c_buf_p) = (yy_hold_char);
1160 if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1162 /* yy_c_buf_p now points to the character we want to return.
1163 * If this occurs *before* the EOB characters, then it's a
1164 * valid NUL; if not, then we've hit the end of the buffer.
1166 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1167 /* This was really a NUL. */
1168 *(yy_c_buf_p) = '\0';
1170 else
1171 { /* need more input */
1172 int offset = (yy_c_buf_p) - (yytext_ptr);
1173 ++(yy_c_buf_p);
1175 switch ( yy_get_next_buffer( ) )
1177 case EOB_ACT_LAST_MATCH:
1178 /* This happens because yy_g_n_b()
1179 * sees that we've accumulated a
1180 * token and flags that we need to
1181 * try matching the token before
1182 * proceeding. But for input(),
1183 * there's no matching to consider.
1184 * So convert the EOB_ACT_LAST_MATCH
1185 * to EOB_ACT_END_OF_FILE.
1188 /* Reset buffer status. */
1189 yyrestart(yyin );
1191 /*FALLTHROUGH*/
1193 case EOB_ACT_END_OF_FILE:
1195 if ( yywrap( ) )
1196 return 0;
1198 if ( ! (yy_did_buffer_switch_on_eof) )
1199 YY_NEW_FILE;
1200 #ifdef __cplusplus
1201 return yyinput();
1202 #else
1203 return input();
1204 #endif
1207 case EOB_ACT_CONTINUE_SCAN:
1208 (yy_c_buf_p) = (yytext_ptr) + offset;
1209 break;
1214 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
1215 *(yy_c_buf_p) = '\0'; /* preserve yytext */
1216 (yy_hold_char) = *++(yy_c_buf_p);
1218 return c;
1220 #endif /* ifndef YY_NO_INPUT */
1222 /** Immediately switch to a different input stream.
1223 * @param input_file A readable stream.
1225 * @note This function does not reset the start condition to @c INITIAL .
1227 void yyrestart (FILE * input_file )
1230 if ( ! YY_CURRENT_BUFFER ){
1231 yyensure_buffer_stack ();
1232 YY_CURRENT_BUFFER_LVALUE =
1233 yy_create_buffer(yyin,YY_BUF_SIZE );
1236 yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1237 yy_load_buffer_state( );
1240 /** Switch to a different input buffer.
1241 * @param new_buffer The new input buffer.
1244 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
1247 /* TODO. We should be able to replace this entire function body
1248 * with
1249 * yypop_buffer_state();
1250 * yypush_buffer_state(new_buffer);
1252 yyensure_buffer_stack ();
1253 if ( YY_CURRENT_BUFFER == new_buffer )
1254 return;
1256 if ( YY_CURRENT_BUFFER )
1258 /* Flush out information for old buffer. */
1259 *(yy_c_buf_p) = (yy_hold_char);
1260 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1261 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1264 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1265 yy_load_buffer_state( );
1267 /* We don't actually know whether we did this switch during
1268 * EOF (yywrap()) processing, but the only time this flag
1269 * is looked at is after yywrap() is called, so it's safe
1270 * to go ahead and always set it.
1272 (yy_did_buffer_switch_on_eof) = 1;
1275 static void yy_load_buffer_state (void)
1277 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1278 (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1279 yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1280 (yy_hold_char) = *(yy_c_buf_p);
1283 /** Allocate and initialize an input buffer state.
1284 * @param file A readable stream.
1285 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
1287 * @return the allocated buffer state.
1289 YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
1291 YY_BUFFER_STATE b;
1293 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1294 if ( ! b )
1295 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1297 b->yy_buf_size = size;
1299 /* yy_ch_buf has to be 2 characters longer than the size given because
1300 * we need to put in 2 end-of-buffer characters.
1302 b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
1303 if ( ! b->yy_ch_buf )
1304 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1306 b->yy_is_our_buffer = 1;
1308 yy_init_buffer(b,file );
1310 return b;
1313 /** Destroy the buffer.
1314 * @param b a buffer created with yy_create_buffer()
1317 void yy_delete_buffer (YY_BUFFER_STATE b )
1320 if ( ! b )
1321 return;
1323 if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1324 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1326 if ( b->yy_is_our_buffer )
1327 yyfree((void *) b->yy_ch_buf );
1329 yyfree((void *) b );
1332 #ifndef __cplusplus
1333 extern int isatty (int );
1334 #endif /* __cplusplus */
1336 /* Initializes or reinitializes a buffer.
1337 * This function is sometimes called more than once on the same buffer,
1338 * such as during a yyrestart() or at EOF.
1340 static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
1343 int oerrno = errno;
1345 yy_flush_buffer(b );
1347 b->yy_input_file = file;
1348 b->yy_fill_buffer = 1;
1350 /* If b is the current buffer, then yy_init_buffer was _probably_
1351 * called from yyrestart() or through yy_get_next_buffer.
1352 * In that case, we don't want to reset the lineno or column.
1354 if (b != YY_CURRENT_BUFFER){
1355 b->yy_bs_lineno = 1;
1356 b->yy_bs_column = 0;
1359 b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
1361 errno = oerrno;
1364 /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1365 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
1368 void yy_flush_buffer (YY_BUFFER_STATE b )
1370 if ( ! b )
1371 return;
1373 b->yy_n_chars = 0;
1375 /* We always need two end-of-buffer characters. The first causes
1376 * a transition to the end-of-buffer state. The second causes
1377 * a jam in that state.
1379 b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1380 b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1382 b->yy_buf_pos = &b->yy_ch_buf[0];
1384 b->yy_at_bol = 1;
1385 b->yy_buffer_status = YY_BUFFER_NEW;
1387 if ( b == YY_CURRENT_BUFFER )
1388 yy_load_buffer_state( );
1391 /** Pushes the new state onto the stack. The new state becomes
1392 * the current state. This function will allocate the stack
1393 * if necessary.
1394 * @param new_buffer The new state.
1397 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1399 if (new_buffer == NULL)
1400 return;
1402 yyensure_buffer_stack();
1404 /* This block is copied from yy_switch_to_buffer. */
1405 if ( YY_CURRENT_BUFFER )
1407 /* Flush out information for old buffer. */
1408 *(yy_c_buf_p) = (yy_hold_char);
1409 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1410 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1413 /* Only push if top exists. Otherwise, replace top. */
1414 if (YY_CURRENT_BUFFER)
1415 (yy_buffer_stack_top)++;
1416 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1418 /* copied from yy_switch_to_buffer. */
1419 yy_load_buffer_state( );
1420 (yy_did_buffer_switch_on_eof) = 1;
1423 /** Removes and deletes the top of the stack, if present.
1424 * The next element becomes the new top.
1427 void yypop_buffer_state (void)
1429 if (!YY_CURRENT_BUFFER)
1430 return;
1432 yy_delete_buffer(YY_CURRENT_BUFFER );
1433 YY_CURRENT_BUFFER_LVALUE = NULL;
1434 if ((yy_buffer_stack_top) > 0)
1435 --(yy_buffer_stack_top);
1437 if (YY_CURRENT_BUFFER) {
1438 yy_load_buffer_state( );
1439 (yy_did_buffer_switch_on_eof) = 1;
1443 /* Allocates the stack if it does not exist.
1444 * Guarantees space for at least one push.
1446 static void yyensure_buffer_stack (void)
1448 int num_to_alloc;
1450 if (!(yy_buffer_stack)) {
1452 /* First allocation is just for 2 elements, since we don't know if this
1453 * scanner will even need a stack. We use 2 instead of 1 to avoid an
1454 * immediate realloc on the next call.
1456 num_to_alloc = 1;
1457 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1458 (num_to_alloc * sizeof(struct yy_buffer_state*)
1461 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
1463 (yy_buffer_stack_max) = num_to_alloc;
1464 (yy_buffer_stack_top) = 0;
1465 return;
1468 if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1470 /* Increase the buffer to prepare for a possible push. */
1471 int grow_size = 8 /* arbitrary grow size */;
1473 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1474 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1475 ((yy_buffer_stack),
1476 num_to_alloc * sizeof(struct yy_buffer_state*)
1479 /* zero only the new slots.*/
1480 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1481 (yy_buffer_stack_max) = num_to_alloc;
1485 /** Setup the input buffer state to scan directly from a user-specified character buffer.
1486 * @param base the character buffer
1487 * @param size the size in bytes of the character buffer
1489 * @return the newly allocated buffer state object.
1491 YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
1493 YY_BUFFER_STATE b;
1495 if ( size < 2 ||
1496 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1497 base[size-1] != YY_END_OF_BUFFER_CHAR )
1498 /* They forgot to leave room for the EOB's. */
1499 return 0;
1501 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1502 if ( ! b )
1503 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1505 b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
1506 b->yy_buf_pos = b->yy_ch_buf = base;
1507 b->yy_is_our_buffer = 0;
1508 b->yy_input_file = 0;
1509 b->yy_n_chars = b->yy_buf_size;
1510 b->yy_is_interactive = 0;
1511 b->yy_at_bol = 1;
1512 b->yy_fill_buffer = 0;
1513 b->yy_buffer_status = YY_BUFFER_NEW;
1515 yy_switch_to_buffer(b );
1517 return b;
1520 /** Setup the input buffer state to scan a string. The next call to yylex() will
1521 * scan from a @e copy of @a str.
1522 * @param str a NUL-terminated string to scan
1524 * @return the newly allocated buffer state object.
1525 * @note If you want to scan bytes that may contain NUL values, then use
1526 * yy_scan_bytes() instead.
1528 YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1531 return yy_scan_bytes(yystr,strlen(yystr) );
1534 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1535 * scan from a @e copy of @a bytes.
1536 * @param bytes the byte buffer to scan
1537 * @param len the number of bytes in the buffer pointed to by @a bytes.
1539 * @return the newly allocated buffer state object.
1541 YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
1543 YY_BUFFER_STATE b;
1544 char *buf;
1545 yy_size_t n;
1546 int i;
1548 /* Get memory for full buffer, including space for trailing EOB's. */
1549 n = _yybytes_len + 2;
1550 buf = (char *) yyalloc(n );
1551 if ( ! buf )
1552 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1554 for ( i = 0; i < _yybytes_len; ++i )
1555 buf[i] = yybytes[i];
1557 buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1559 b = yy_scan_buffer(buf,n );
1560 if ( ! b )
1561 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1563 /* It's okay to grow etc. this buffer, and we should throw it
1564 * away when we're done.
1566 b->yy_is_our_buffer = 1;
1568 return b;
1571 #ifndef YY_EXIT_FAILURE
1572 #define YY_EXIT_FAILURE 2
1573 #endif
1575 static void yy_fatal_error (yyconst char* msg )
1577 (void) fprintf( stderr, "%s\n", msg );
1578 exit( YY_EXIT_FAILURE );
1581 /* Redefine yyless() so it works in section 3 code. */
1583 #undef yyless
1584 #define yyless(n) \
1585 do \
1587 /* Undo effects of setting up yytext. */ \
1588 int yyless_macro_arg = (n); \
1589 YY_LESS_LINENO(yyless_macro_arg);\
1590 yytext[yyleng] = (yy_hold_char); \
1591 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1592 (yy_hold_char) = *(yy_c_buf_p); \
1593 *(yy_c_buf_p) = '\0'; \
1594 yyleng = yyless_macro_arg; \
1596 while ( 0 )
1598 /* Accessor methods (get/set functions) to struct members. */
1600 /** Get the current line number.
1603 int yyget_lineno (void)
1606 return yylineno;
1609 /** Get the input stream.
1612 FILE *yyget_in (void)
1614 return yyin;
1617 /** Get the output stream.
1620 FILE *yyget_out (void)
1622 return yyout;
1625 /** Get the length of the current token.
1628 int yyget_leng (void)
1630 return yyleng;
1633 /** Get the current token.
1637 char *yyget_text (void)
1639 return yytext;
1642 /** Set the current line number.
1643 * @param line_number
1646 void yyset_lineno (int line_number )
1649 yylineno = line_number;
1652 /** Set the input stream. This does not discard the current
1653 * input buffer.
1654 * @param in_str A readable stream.
1656 * @see yy_switch_to_buffer
1658 void yyset_in (FILE * in_str )
1660 yyin = in_str ;
1663 void yyset_out (FILE * out_str )
1665 yyout = out_str ;
1668 int yyget_debug (void)
1670 return yy_flex_debug;
1673 void yyset_debug (int bdebug )
1675 yy_flex_debug = bdebug ;
1678 static int yy_init_globals (void)
1680 /* Initialization is the same as for the non-reentrant scanner.
1681 * This function is called from yylex_destroy(), so don't allocate here.
1684 (yy_buffer_stack) = 0;
1685 (yy_buffer_stack_top) = 0;
1686 (yy_buffer_stack_max) = 0;
1687 (yy_c_buf_p) = (char *) 0;
1688 (yy_init) = 0;
1689 (yy_start) = 0;
1691 /* Defined in main.c */
1692 #ifdef YY_STDINIT
1693 yyin = stdin;
1694 yyout = stdout;
1695 #else
1696 yyin = (FILE *) 0;
1697 yyout = (FILE *) 0;
1698 #endif
1700 /* For future reference: Set errno on error, since we are called by
1701 * yylex_init()
1703 return 0;
1706 /* yylex_destroy is for both reentrant and non-reentrant scanners. */
1707 int yylex_destroy (void)
1710 /* Pop the buffer stack, destroying each element. */
1711 while(YY_CURRENT_BUFFER){
1712 yy_delete_buffer(YY_CURRENT_BUFFER );
1713 YY_CURRENT_BUFFER_LVALUE = NULL;
1714 yypop_buffer_state();
1717 /* Destroy the stack itself. */
1718 yyfree((yy_buffer_stack) );
1719 (yy_buffer_stack) = NULL;
1721 /* Reset the globals. This is important in a non-reentrant scanner so the next time
1722 * yylex() is called, initialization will occur. */
1723 yy_init_globals( );
1725 return 0;
1729 * Internal utility routines.
1732 #ifndef yytext_ptr
1733 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1735 register int i;
1736 for ( i = 0; i < n; ++i )
1737 s1[i] = s2[i];
1739 #endif
1741 #ifdef YY_NEED_STRLEN
1742 static int yy_flex_strlen (yyconst char * s )
1744 register int n;
1745 for ( n = 0; s[n]; ++n )
1748 return n;
1750 #endif
1752 void *yyalloc (yy_size_t size )
1754 return (void *) malloc( size );
1757 void *yyrealloc (void * ptr, yy_size_t size )
1759 /* The cast to (char *) in the following accommodates both
1760 * implementations that use char* generic pointers, and those
1761 * that use void* generic pointers. It works with the latter
1762 * because both ANSI C and C++ allow castless assignment from
1763 * any pointer type to void*, and deal with argument conversions
1764 * as though doing an assignment.
1766 return (void *) realloc( (char *) ptr, size );
1769 void yyfree (void * ptr )
1771 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
1774 #define YYTABLES_NAME "yytables"
1776 #line 65 "slc-lex.l"
1780 void
1781 error_message (const char *format, ...)
1783 va_list args;
1785 va_start (args, format);
1786 fprintf (stderr, "%s:%d: ", filename, lineno);
1787 vfprintf (stderr, format, args);
1788 va_end (args);
1789 error_flag++;
1792 void
1793 yyerror (char *s)
1795 error_message("%s\n", s);
1798 static void
1799 handle_comment(void)
1801 int c;
1802 int start_lineno = lineno;
1803 int level = 1;
1804 int seen_star = 0;
1805 int seen_slash = 0;
1806 while((c = input()) != EOF) {
1807 if(c == '/') {
1808 if(seen_star) {
1809 if(--level == 0)
1810 return;
1811 seen_star = 0;
1812 continue;
1814 seen_slash = 1;
1815 continue;
1817 if(seen_star && c == '/') {
1818 if(--level == 0)
1819 return;
1820 seen_star = 0;
1821 continue;
1823 if(c == '*') {
1824 if(seen_slash) {
1825 level++;
1826 seen_star = seen_slash = 0;
1827 continue;
1829 seen_star = 1;
1830 continue;
1832 seen_star = seen_slash = 0;
1833 if(c == '\n') {
1834 lineno++;
1835 continue;
1838 if(c == EOF)
1839 error_message("unterminated comment, possibly started on line %d\n", start_lineno);
1842 static char *
1843 handle_string(void)
1845 char x[1024];
1846 int i = 0;
1847 int c;
1848 int quote = 0;
1849 while((c = input()) != EOF){
1850 if(quote) {
1851 x[i++] = '\\';
1852 x[i++] = c;
1853 quote = 0;
1854 continue;
1856 if(c == '\n'){
1857 error_message("unterminated string");
1858 lineno++;
1859 break;
1861 if(c == '\\'){
1862 quote++;
1863 continue;
1865 if(c == '\"')
1866 break;
1867 x[i++] = c;
1869 x[i] = '\0';
1870 return strdup(x);
1874 yywrap ()
1876 return 1;