11
2- #line 2 "lex.yy.c"
2+ #line 3 "lex.yy.c"
33
44#define YY_INT_ALIGNED short int
55
@@ -46,7 +46,6 @@ typedef int16_t flex_int16_t;
4646typedef uint16_t flex_uint16_t ;
4747typedef int32_t flex_int32_t ;
4848typedef uint32_t flex_uint32_t ;
49- typedef uint64_t flex_uint64_t ;
5049#else
5150typedef signed char flex_int8_t ;
5251typedef short int flex_int16_t ;
@@ -155,7 +154,7 @@ typedef struct yy_buffer_state *YY_BUFFER_STATE;
155154typedef size_t yy_size_t ;
156155#endif
157156
158- extern yy_size_t yyleng ;
157+ extern int yyleng ;
159158
160159extern FILE * yyin , * yyout ;
161160
@@ -198,7 +197,7 @@ struct yy_buffer_state
198197 /* Number of characters read into yy_ch_buf, not including EOB
199198 * characters.
200199 */
201- yy_size_t yy_n_chars ;
200+ int yy_n_chars ;
202201
203202 /* Whether we "own" the buffer - i.e., we know we created it,
204203 * and can realloc() it to grow it, and should free() it to
@@ -267,8 +266,8 @@ static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
267266
268267/* yy_hold_char holds the character lost when yytext is formed. */
269268static char yy_hold_char ;
270- static yy_size_t yy_n_chars ; /* number of characters read into yy_ch_buf */
271- yy_size_t yyleng ;
269+ static int yy_n_chars ; /* number of characters read into yy_ch_buf */
270+ int yyleng ;
272271
273272/* Points to current character in buffer. */
274273static char * yy_c_buf_p = NULL ;
@@ -295,7 +294,7 @@ static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file );
295294
296295YY_BUFFER_STATE yy_scan_buffer ( char * base , yy_size_t size );
297296YY_BUFFER_STATE yy_scan_string ( const char * yy_str );
298- YY_BUFFER_STATE yy_scan_bytes ( const char * bytes , yy_size_t len );
297+ YY_BUFFER_STATE yy_scan_bytes ( const char * bytes , int len );
299298
300299void * yyalloc ( yy_size_t );
301300void * yyrealloc ( void * , yy_size_t );
@@ -351,7 +350,7 @@ static void yynoreturn yy_fatal_error ( const char* msg );
351350 */
352351#define YY_DO_BEFORE_ACTION \
353352 (yytext_ptr) = yy_bp; \
354- yyleng = (yy_size_t ) (yy_cp - yy_bp); \
353+ yyleng = (int ) (yy_cp - yy_bp); \
355354 (yy_hold_char) = *yy_cp; \
356355 *yy_cp = '\0'; \
357356 (yy_c_buf_p) = yy_cp;
@@ -510,7 +509,7 @@ FILE *yyget_out ( void );
510509
511510void yyset_out ( FILE * _out_str );
512511
513- yy_size_t yyget_leng ( void );
512+ int yyget_leng ( void );
514513
515514char * yyget_text ( void );
516515
@@ -579,7 +578,7 @@ static int input ( void );
579578 if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
580579 { \
581580 int c = '*'; \
582- yy_size_t n; \
581+ int n; \
583582 for ( n = 0; n < max_size && \
584583 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
585584 buf[n] = (char) c; \
@@ -1051,7 +1050,7 @@ static int yy_get_next_buffer (void)
10511050
10521051 else
10531052 {
1054- yy_size_t num_to_read =
1053+ int num_to_read =
10551054 YY_CURRENT_BUFFER_LVALUE -> yy_buf_size - number_to_move - 1 ;
10561055
10571056 while ( num_to_read <= 0 )
@@ -1065,7 +1064,7 @@ static int yy_get_next_buffer (void)
10651064
10661065 if ( b -> yy_is_our_buffer )
10671066 {
1068- yy_size_t new_size = b -> yy_buf_size * 2 ;
1067+ int new_size = b -> yy_buf_size * 2 ;
10691068
10701069 if ( new_size <= 0 )
10711070 b -> yy_buf_size += b -> yy_buf_size / 8 ;
@@ -1123,7 +1122,7 @@ static int yy_get_next_buffer (void)
11231122
11241123 if (((yy_n_chars ) + number_to_move ) > YY_CURRENT_BUFFER_LVALUE -> yy_buf_size ) {
11251124 /* Extend the array by 50%, plus the number we really need. */
1126- yy_size_t new_size = (yy_n_chars ) + number_to_move + ((yy_n_chars ) >> 1 );
1125+ int new_size = (yy_n_chars ) + number_to_move + ((yy_n_chars ) >> 1 );
11271126 YY_CURRENT_BUFFER_LVALUE -> yy_ch_buf = (char * ) yyrealloc (
11281127 (void * ) YY_CURRENT_BUFFER_LVALUE -> yy_ch_buf , (yy_size_t ) new_size );
11291128 if ( ! YY_CURRENT_BUFFER_LVALUE -> yy_ch_buf )
@@ -1212,7 +1211,7 @@ static int yy_get_next_buffer (void)
12121211 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE -> yy_ch_buf + 2 )
12131212 { /* need to shift things up to make room */
12141213 /* +2 for EOB chars. */
1215- yy_size_t number_to_move = (yy_n_chars ) + 2 ;
1214+ int number_to_move = (yy_n_chars ) + 2 ;
12161215 char * dest = & YY_CURRENT_BUFFER_LVALUE -> yy_ch_buf [
12171216 YY_CURRENT_BUFFER_LVALUE -> yy_buf_size + 2 ];
12181217 char * source =
@@ -1263,7 +1262,7 @@ static int yy_get_next_buffer (void)
12631262
12641263 else
12651264 { /* need more input */
1266- yy_size_t offset = (yy_c_buf_p ) - (yytext_ptr );
1265+ int offset = (int ) (( yy_c_buf_p ) - (yytext_ptr ) );
12671266 ++ (yy_c_buf_p );
12681267
12691268 switch ( yy_get_next_buffer ( ) )
@@ -1632,12 +1631,12 @@ YY_BUFFER_STATE yy_scan_string (const char * yystr )
16321631 *
16331632 * @return the newly allocated buffer state object.
16341633 */
1635- YY_BUFFER_STATE yy_scan_bytes (const char * yybytes , yy_size_t _yybytes_len )
1634+ YY_BUFFER_STATE yy_scan_bytes (const char * yybytes , int _yybytes_len )
16361635{
16371636 YY_BUFFER_STATE b ;
16381637 char * buf ;
16391638 yy_size_t n ;
1640- yy_size_t i ;
1639+ int i ;
16411640
16421641 /* Get memory for full buffer, including space for trailing EOB's. */
16431642 n = (yy_size_t ) (_yybytes_len + 2 );
@@ -1679,7 +1678,7 @@ static void yynoreturn yy_fatal_error (const char* msg )
16791678 do \
16801679 { \
16811680 /* Undo effects of setting up yytext. */ \
1682- yy_size_t yyless_macro_arg = (n); \
1681+ int yyless_macro_arg = (n); \
16831682 YY_LESS_LINENO(yyless_macro_arg);\
16841683 yytext[yyleng] = (yy_hold_char); \
16851684 (yy_c_buf_p) = yytext + yyless_macro_arg; \
@@ -1719,7 +1718,7 @@ FILE *yyget_out (void)
17191718/** Get the length of the current token.
17201719 *
17211720 */
1722- yy_size_t yyget_leng (void )
1721+ int yyget_leng (void )
17231722{
17241723 return yyleng ;
17251724}
0 commit comments