Νέα

Top 100 posters,του σάιτ!!!!

  • Μέλος που άνοιξε το νήμα -
  • Ημερομηνία ανοίγματος
  • Απαντήσεις 264
  • Εμφανίσεις 14K
  • Tagged users Καμία
  • Βλέπουν το thread αυτή τη στιγμή 1 άτομα (0 μέλη και 1 επισκέπτες)

Tsolias.Psolias

Ενεργό Μέλος
Εγγρ.
8 Ιουλ 2007
Μηνύματα
15.106
Like
28
Πόντοι
166
για νερντακος δεν επιασες καλη θεση μπουμπη :birdman::birdman::birdman::birdman::birdman::birdman::birdman::birdman::birdman:
είμαι απασχολημένος με άλλα πράγματα, διαφορετικά κατά καιρούς... τώρα να πούμε


#line 3 "lex.yy.c"

#define  YY_INT_ALIGNED short int

/* A lexical scanner generated by flex */

#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 35
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif

/* First, we deal with  platform-specific or compiler-specific issues. */

/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>

/* end standard C headers. */

/* flex integer type definitions */

#ifndef FLEXINT_H
#define FLEXINT_H

/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */

#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L

/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif

#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
#endif /* ! C99 */

/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN               (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN              (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN              (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX               (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX              (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX              (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX              (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX             (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX             (4294967295U)
#endif

#endif /* ! FLEXINT_H */

#ifdef __cplusplus

/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST

#else /* ! __cplusplus */

/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)

#define YY_USE_CONST

#endif /* defined (__STDC__) */
#endif /* ! __cplusplus */

#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif

/* Returned upon end-of-file. */
#define YY_NULL 0

/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index.  If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)

/* Enter a start condition.  This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN (yy_start) = 1 + 2 *

/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state.  The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START

/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)

/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart(yyin  )

#define YY_END_OF_BUFFER_CHAR 0

/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#endif

/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))

#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif

extern int yyleng;

extern FILE *yyin, *yyout;

#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2

   /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires
    *       access to the local variable yy_act. Since yyless() is a macro, it would break
    *       existing scanners that call yyless() from OUTSIDE yylex.
    *       One obvious solution it to make yy_act a global. I tried that, and saw
    *       a 5% performance hit in a non-yylineno scanner, because yy_act is
    *       normally declared as a register variable-- so it is not worth it.
    */
   #define  YY_LESS_LINENO(n)
           do {
               int yyl;
               for ( yyl = n; yyl < yyleng; ++yyl )
                   if ( yytext[yyl] == 'n' )
                       --yylineno;
           }while(0)
   
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n)
do
{
/* Undo effects of setting up yytext. */
       int yyless_macro_arg = (n);
       YY_LESS_LINENO(yyless_macro_arg);
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ;
YY_DO_BEFORE_ACTION; /* set up yytext again */
}
while ( 0 )

#define unput(c) yyunput( c, (yytext_ptr)  )

#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif

#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
FILE *yy_input_file;

char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */

/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
yy_size_t yy_buf_size;

/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
int yy_n_chars;

/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;

/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;

/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;

   int yy_bs_lineno; /**< The line count. */
   int yy_bs_column; /**< The column count. */
   
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;

int yy_buffer_status;

#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more.  We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2

};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */

/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */

/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( (yy_buffer_stack)
                         ? (yy_buffer_stack)[(yy_buffer_stack_top)]
                         : NULL)

/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]

/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;
static int yy_n_chars; /* number of characters read into yy_ch_buf */
int yyleng;

/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 0; /* whether we need to initialize */
static int yy_start = 0; /* start state number */

/* Flag which is used to allow yywrap()'s to do buffer switches
* instead of setting up a fresh yyin.  A bit of a hack ...
*/
static int yy_did_buffer_switch_on_eof;

void yyrestart (FILE *input_file  );
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
void yy_delete_buffer (YY_BUFFER_STATE b  );
void yy_flush_buffer (YY_BUFFER_STATE b  );
void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
void yypop_buffer_state (void );

static void yyensure_buffer_stack (void );
static void yy_load_buffer_state (void );
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );

#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )

YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );

void *yyalloc (yy_size_t  );
void *yyrealloc (void *,yy_size_t  );
void yyfree (void *  );

#define yy_new_buffer yy_create_buffer

#define yy_set_interactive(is_interactive)
{
if ( ! YY_CURRENT_BUFFER ){
       yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =    
           yy_create_buffer(yyin,YY_BUF_SIZE );
}
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive;
}

#define yy_set_bol(at_bol)
{
if ( ! YY_CURRENT_BUFFER ){
       yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =    
           yy_create_buffer(yyin,YY_BUF_SIZE );
}
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol;
}

#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)

/* Begin user sect3 */

#define yywrap(n) 1
#define YY_SKIP_YYWRAP

typedef unsigned char YY_CHAR;

FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;

typedef int yy_state_type;

#define YY_FLEX_LEX_COMPAT
extern int yylineno;

int yylineno = 1;

extern char yytext[];

static yy_state_type yy_get_previous_state (void );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
static int yy_get_next_buffer (void );
static void yy_fatal_error (yyconst char msg[]  );

/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION
(yytext_ptr) = yy_bp;
yyleng = (size_t) (yy_cp - yy_bp);
(yy_hold_char) = *yy_cp;
*yy_cp = '0';
if ( yyleng + (yy_more_offset) >= YYLMAX )
YY_FATAL_ERROR( "token too large, exceeds YYLMAX" );
yy_flex_strncpy( &yytext[(yy_more_offset)], (yytext_ptr), yyleng + 1 );
yyleng += (yy_more_offset);
(yy_prev_more_offset) = (yy_more_offset);
(yy_more_offset) = 0;
(yy_c_buf_p) = yy_cp;

#define YY_NUM_RULES 63
#define YY_END_OF_BUFFER 64
/* This struct is not used in this scanner,
  but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst flex_int16_t yy_acclist[228] =
   {   0,
      60,   61,   60,   61,    4,    4,    2,    2,   10,   10,
      64,   62,   63,   60,   62,   63,   61,   63,   62,   63,
       9,   62,   63,   36,   62,   63,   49,   62,   63,   50,
      62,   63,   34,   62,   63,   31,   62,   63,   52,   62,
      63,   32,   62,   63,   55,   62,   63,   35,   62,   63,
      58,   62,   63,   51,   62,   63,   53,   62,   63,   41,
      62,   63,   33,   62,   63,   42,   62,   63,   57,   62,
      63,   45,   62,   63,   46,   62,   63,   57,   62,   63,
      57,   62,   63,   57,   62,   63,   57,   62,   63,   57,
      62,   63,   57,   62,   63,   57,   62,   63,   57,   62,

      63,   57,   62,   63,   57,   62,   63,   57,   62,   63,
      57,   62,   63,   47,   62,   63,   48,   62,   63,    4,
      63,   63,   63,    2,   63,   63,   10,   63,   15,   63,
      63,   60,   61,   38,   39,   40,   56,    3,    1,   58,
      54,   43,   37,   44,   57,   57,   57,   57,   57,   57,
      57,   57,   57,   57,   16,   57,   57,   57,   57,   26,
      57,   57,   57,   57,    4,    7,    8,    5,    6,    2,
      10,   13,   14,   11,   12,   59,   58,   59,   24,   57,
      57,   57,   57,   57,   19,   57,   57,   57,   30,   57,
      25,   57,   57,   57,   57,   57,   57,   17,   57,   57,

      57,   57,   57,   28,   57,   57,   22,   57,   57,   29,
      57,   57,   27,   57,   57,   18,   57,   57,   57,   21,
      57,   57,   57,   23,   57,   20,   57
   } ;

static yyconst flex_int16_t yy_accept[140] =
   {   0,
       1,    3,    5,    6,    7,    8,    9,   10,   11,   12,
      14,   17,   19,   21,   24,   27,   30,   33,   36,   39,
      42,   45,   48,   51,   54,   57,   60,   63,   66,   69,
      72,   75,   78,   81,   84,   87,   90,   93,   96,   99,
     102,  105,  108,  111,  114,  117,  120,  122,  123,  124,
     126,  127,  129,  131,  132,  133,  134,  135,  136,  137,
     138,  139,  140,  140,  141,  142,  143,  144,  145,  146,
     147,  148,  149,  150,  151,  152,  153,  154,  155,  157,
     158,  159,  160,  162,  163,  164,  165,  166,  167,  167,
     168,  169,  170,  170,  171,  172,  173,  174,  175,  176,

     177,  179,  181,  182,  183,  184,  185,  187,  188,  189,
     191,  193,  194,  195,  196,  197,  198,  200,  201,  202,
     203,  204,  206,  207,  209,  210,  212,  213,  215,  216,
     218,  219,  220,  222,  223,  224,  226,  228,  228
   } ;

static yyconst flex_int32_t yy_ec[256] =
   {   0,
       1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    2,    4,    5,    1,    1,    6,    1,    1,    7,
       8,    9,   10,   11,   12,   13,   14,   15,   15,   15,
      15,   15,   15,   15,   15,   15,   15,   16,   17,   18,
      19,   20,    1,    1,   21,   21,   21,   21,   21,   21,
      21,   21,   21,   21,   21,   21,   21,   21,   21,   21,
      21,   21,   21,   21,   21,   21,   21,   21,   21,   21,
      22,   23,   24,    1,   25,    1,   26,   27,   28,   29,

      30,   31,   32,   33,   34,   21,   35,   36,   21,   37,
      38,   21,   21,   39,   40,   41,   42,   21,   43,   21,
      21,   21,   44,    1,   45,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1
   } ;

static yyconst flex_int32_t yy_meta[46] =
   {   0,
       1,    1,    2,    1,    3,    1,    1,    1,    4,    1,
       1,    1,    1,    4,    1,    1,    1,    1,    1,    1,
       1,    1,    3,    1,    5,    5,    1,    5,    5,    1,
       1,    5,    5,    5,    1,    1,    3,    1,    5,    1,
       6,    1,    1,    5,    5
   } ;

static yyconst flex_int16_t yy_base[149] =
   {   0,
       0,    0,   37,   38,  216,  215,   43,   44,  217,  220,
     214,  212,  195,  220,  220,  220,  220,  220,  203,  220,
     200,  198,   41,  195,  193,  220,  189,  188,  187,   65,
     220,  220,  168,  165,  161,  156,   27,  145,  130,   20,
     107,  115,  103,  108,  220,  220,    0,   47,   48,    0,
     220,    0,  220,  106,  138,  136,  220,  220,  220,  220,
     220,  220,  123,  122,  220,  220,  220,  220,    0,    0,
       0,  107,  105,   97,   93,   96,   92,   91,    0,   99,
      90,   84,    0,   83,   81,   88,    0,  220,   50,  220,
     220,  220,   54,    0,    0,  220,  107,  220,  220,  106,

     105,    0,   93,   77,   87,   76,    0,   87,   88,    0,
       0,   71,   59,   52,   52,   49,    0,   52,   38,   42,
      38,    0,   46,    0,   38,    0,   40,    0,   36,    0,
      30,   33,    0,   40,   23,    0,    0,  220,  148,  154,
     160,  166,  172,  178,  184,  190,  196,  197
   } ;

static yyconst flex_int16_t yy_def[149] =
   {   0,
     138,    1,  139,  139,  140,  140,  141,  141,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  142,  138,  138,  138,  138,  138,  138,
     138,  138,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,  138,  138,  143,  144,  145,  146,
     138,  147,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  142,  138,  138,  138,  138,   30,  148,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,  143,  138,  144,  138,
     138,  138,  145,  146,  147,  138,  138,  138,  138,  138,

     142,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,   30,    0,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138
   } ;

static yyconst flex_int16_t yy_nxt[266] =
   {   0,
      10,   11,   12,   13,   14,   15,   16,   17,   18,   19,
      20,   21,   22,   23,   24,   25,   26,   27,   28,   29,
      30,   31,   10,   32,   10,   33,   34,   35,   30,   36,
      37,   30,   30,   38,   30,   39,   40,   41,   42,   30,
      43,   30,   44,   45,   46,   48,   48,   53,   53,   61,
      49,   49,   76,   81,   62,   89,   92,   82,   89,  137,
      90,   93,   92,   90,   77,   54,   54,   93,   78,  136,
     135,  134,  133,  132,  131,  130,  129,  128,  127,   51,
      51,  126,  125,   51,   51,   69,  124,  123,  122,   70,
      71,   69,   71,   71,   69,   69,   71,   71,   71,   69,

      69,   69,   69,   71,   69,   71,   69,   69,   70,   70,
      96,   96,  121,  120,  119,  118,  117,  116,  115,  101,
     100,  114,  113,  112,  111,  110,  109,  108,   97,   97,
     107,  106,  105,  104,  103,  102,  101,  100,   56,   55,
      86,   85,   98,   98,   84,   83,   99,   99,   47,   47,
      47,   47,   47,   47,   50,   50,   50,   50,   50,   50,
      52,   52,   52,   52,   52,   52,   63,   80,   63,   63,
      63,   63,   87,   87,   87,   79,   87,   87,   88,   88,
      88,   88,   88,   88,   91,   91,   91,   91,   91,   91,
      94,   75,   94,   94,   94,   94,   95,   95,   74,   95,

      95,   70,   70,   73,   72,   68,   67,   66,   65,   64,
      60,   59,   58,   57,   56,   55,  138,   51,   51,    9,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138
   } ;

static yyconst flex_int16_t yy_chk[266] =
   {   0,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    3,    4,    7,    8,   23,
       3,    4,   37,   40,   23,   48,   49,   40,   89,  135,
      48,   49,   93,   89,   37,    7,    8,   93,   37,  134,
     132,  131,  129,  127,  125,  123,  121,  120,  119,    7,
       8,  118,  116,    7,    8,   30,  115,  114,  113,   30,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,

      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      54,   97,  112,  109,  108,  106,  105,  104,  103,  101,
     100,   86,   85,   84,   82,   81,   80,   78,   54,   97,
      77,   76,   75,   74,   73,   72,   64,   63,   56,   55,
      44,   43,   54,   97,   42,   41,   54,   97,  139,  139,
     139,  139,  139,  139,  140,  140,  140,  140,  140,  140,
     141,  141,  141,  141,  141,  141,  142,   39,  142,  142,
     142,  142,  143,  143,  143,   38,  143,  143,  144,  144,
     144,  144,  144,  144,  145,  145,  145,  145,  145,  145,
     146,   36,  146,  146,  146,  146,  147,  147,   35,  147,

     147,  148,  148,   34,   33,   29,   28,   27,   25,   24,
      22,   21,   19,   13,   12,   11,    9,    6,    5,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138
   } ;

/* Table of booleans, true if rule could match eol. */
static yyconst flex_int32_t yy_rule_can_match_eol[64] =
   {   0,
0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
   0, 1, 0, 0,     };

extern int yy_flex_debug;
int yy_flex_debug = 0;

static yy_state_type *yy_state_buf=0, *yy_state_ptr=0;
static char *yy_full_match;
static int yy_lp;
#define REJECT
{
*yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
yy_cp = (yy_full_match); /* restore poss. backed-over text */
++(yy_lp);
goto find_rule;
}

static int yy_more_offset = 0;
static int yy_prev_more_offset = 0;
#define yymore() ((yy_more_offset) = yy_flex_strlen( yytext ))
#define YY_NEED_STRLEN
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
{
(yy_more_offset) = (yy_prev_more_offset);
yyleng -= (yy_more_offset);
}
#ifndef YYLMAX
#define YYLMAX 8192
#endif

char yytext[YYLMAX];
char *yytext_ptr;
#line 1 "alpha.l"
#line 2 "alpha.l"
#include <iostream>
#include <vector>
#include <string>
#include <fstream>

#define YY_DECL int alpha_yylex (Token* yylval) /*malon den einai void* */

using namespace std;

int lineNumber = 0;
int tokenNumber=0;
int comms=0;
   string comm_str;

typedef enum
{
_key,_op,_int,_real,_string,_mark,_id,_comm,
IF,ELSE,WHILE,FOR,FUNCTION,RETURN,BREAK,CONTINUE,AND,NOT,OR,LOCAL,TRUE,FALSE,NIL,
PLUS,MINUS,ASSIGN,STAR,SLASH,MODULE,EQUAL,NOTEQUAL,INCREMENT,DECREMENT,LOWER,GREATER,LOWEREQUAL,GREATEREQUAL,SQUAREBEGIN,SQUAREEND,BLOCKBEGIN,BLOCKEND,PARBEGIN,PAREND,COLON,COMMA,SEMICOLON,DOUBLECOLON,DOT,DOUBLEDOT,WHITESPACE
} category;

const char *enumNames[] = {"KEYWORD","OPERATOR","INTCONST","REALCONST","STRCONST","MARK","ID","COMMENT",
"IF","ELSE","WHILE","FOR","FUNCTION","RETURN","BREAK","CONTINUE",
"AND","NOT","OR","LOCAL","TRUE","FALSE","NIL","PLUS","MINUS",
"ASSIGN","STAR","SLASH","MODULE","EQUAL","NOTEQUAL","INCREMENT",
"DECREMENT","LOWER","GREATER","LOWEREQUAL","GREATEREQUAL",
"SQUAREBEGIN","SQUAREEND","BLOCKBEGIN","BLOCKEND","PARBEGIN",
"PAREND","COLON","COMMA","SEMICOLON","DOUBLECOLON","DOT","DOUBLEDOT","WHITESPACE"};


class Token
{
public:
int line_num;
int token_num;
string content;
category cat;
category attr;

void init(int line,int token,category type,string cont,category attribute)
{
line_num=line;
token_num=token;
content = cont;
cat=type;
attr=attribute;
}

};




#line 682 "lex.yy.c"

#define INITIAL 0
#define COMMENT1 1
#define COMMENT2 2
#define STRING 3

#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif

#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif

static int yy_init_globals (void );

/* Accessor methods to globals.
  These are made visible to non-reentrant scanners for convenience. */

int yylex_destroy (void );

int yyget_debug (void );

void yyset_debug (int debug_flag  );

YY_EXTRA_TYPE yyget_extra (void );

void yyset_extra (YY_EXTRA_TYPE user_defined  );

FILE *yyget_in (void );

void yyset_in  (FILE * in_str  );

FILE *yyget_out (void );

void yyset_out  (FILE * out_str  );

int yyget_leng (void );

char *yyget_text (void );

int yyget_lineno (void );

void yyset_lineno (int line_number  );

/* Macros after this point can all be overridden by user definitions in
* section 1.
*/

#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap (void );
#else
extern int yywrap (void );
#endif
#endif

   static void yyunput (int c,char *buf_ptr  );
   
#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int );
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * );
#endif

#ifndef YY_NO_INPUT

#ifdef __cplusplus
static int yyinput (void );
#else
static int input (void );
#endif

#endif

/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif

/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO fwrite( yytext, yyleng, 1, yyout )
#endif

/* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size)
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive )
{
int c = '*';
int n;
for ( n = 0; n < max_size &&
    (c = getc( yyin )) != EOF && c != 'n'; ++n )
buf[n] = (char) c;
if ( c == 'n' )
buf[n++] = (char) c;
if ( c == EOF && ferror( yyin ) )
YY_FATAL_ERROR( "input in flex scanner failed" );
result = n;
}
else
{
errno=0;
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin))
{
if( errno != EINTR)
{
YY_FATAL_ERROR( "input in flex scanner failed" );
break;
}
errno=0;
clearerr(yyin);
}
}


#endif

/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif

/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif

/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif

/* end tables serialization structures and prototypes */

/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1

extern int yylex (void);

#define YY_DECL int yylex (void)
#endif /* !YY_DECL */

/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif

/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif

#define YY_RULE_SETUP
YY_USER_ACTION

/** The main scanner function which does all the work.
*/
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
   
#line 68 "alpha.l"

#line 869 "lex.yy.c"

if ( !(yy_init) )
{
(yy_init) = 1;

#ifdef YY_USER_INIT
YY_USER_INIT;
#endif

       /* Create the reject buffer large enough to save one state per allowed character. */
       if ( ! (yy_state_buf) )
           (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE  );
           if ( ! (yy_state_buf) )
               YY_FATAL_ERROR( "out of dynamic memory in yylex()" );

if ( ! (yy_start) )
(yy_start) = 1; /* first start state */

if ( ! yyin )
yyin = stdin;

if ( ! yyout )
yyout = stdout;

if ( ! YY_CURRENT_BUFFER ) {
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE );
}

yy_load_buffer_state( );
}

while ( 1 ) /* loops until end-of-file is reached */
{
yy_cp = (yy_c_buf_p);

/* Support of yytext. */
*yy_cp = (yy_hold_char);

/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;

yy_current_state = (yy_start);

(yy_state_ptr) = (yy_state_buf);
*(yy_state_ptr)++ = yy_current_state;

yy_match:
do
{
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 139 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
*(yy_state_ptr)++ = yy_current_state;
++yy_cp;
}
while ( yy_base[yy_current_state] != 220 );

yy_find_action:
yy_current_state = *--(yy_state_ptr);
(yy_lp) = yy_accept[yy_current_state];
find_rule: /* we branch to this label when backing up */
for ( ; ; ) /* until we find what rule we matched */
{
if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] )
{
yy_act = yy_acclist[(yy_lp)];
{
(yy_full_match) = yy_cp;
break;
}
}
--yy_cp;
yy_current_state = *--(yy_state_ptr);
(yy_lp) = yy_accept[yy_current_state];
}

YY_DO_BEFORE_ACTION;

if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] )
{
int yyl;
for ( yyl = (yy_prev_more_offset); yyl < yyleng; ++yyl )
if ( yytext[yyl] == 'n' )
 
   yylineno++;
;
}

do_action: /* This label is used only to access EOF actions. */

switch ( yy_act )
{ /* beginning of action switch */
case 1:
YY_RULE_SETUP
#line 69 "alpha.l"
BEGIN(COMMENT2);
YY_BREAK
case 2:
YY_RULE_SETUP
#line 70 "alpha.l"
{BEGIN(INITIAL);cerr << "Recognised c-style Line comment" << endl;}
YY_BREAK
case 3:
YY_RULE_SETUP
#line 72 "alpha.l"
BEGIN(COMMENT1); cerr <<  "Recognised c-style comment" << endl; comms=1;
YY_BREAK
case 4:
/* rule 4 can match eol */
YY_RULE_SETUP
#line 74 "alpha.l"

YY_BREAK
case 5:
/* rule 5 can match eol */
YY_RULE_SETUP
#line 75 "alpha.l"

YY_BREAK
case 6:
YY_RULE_SETUP
#line 76 "alpha.l"
{comms++; cerr << " nested commend" << endl;}
YY_BREAK
case 7:
/* rule 7 can match eol */
YY_RULE_SETUP
#line 77 "alpha.l"

YY_BREAK
case 8:
YY_RULE_SETUP
#line 78 "alpha.l"
{if(--comms==0) {BEGIN(INITIAL); cerr << "Finished ignoring c-style comment" << endl;}}
YY_BREAK
case YY_STATE_EOF(COMMENT1):
#line 79 "alpha.l"
return -10;
YY_BREAK
case 9:
YY_RULE_SETUP
#line 81 "alpha.l"
comm_str="";BEGIN(STRING);
YY_BREAK
case 10:
/* rule 10 can match eol */
YY_RULE_SETUP
#line 82 "alpha.l"
{comm_str+=yytext;}
YY_BREAK
case 11:
YY_RULE_SETUP
#line 83 "alpha.l"
{comm_str+='n';}
YY_BREAK
case 12:
YY_RULE_SETUP
#line 84 "alpha.l"
{comm_str+='t';}
YY_BREAK
case 13:
YY_RULE_SETUP
#line 85 "alpha.l"
{comm_str+='"';}
YY_BREAK
case 14:
YY_RULE_SETUP
#line 86 "alpha.l"
{comm_str+='';}
YY_BREAK
case YY_STATE_EOF(STRING):
#line 87 "alpha.l"
{cerr << "line: " << yylineno <<" error: EOF in string quotes" << endl;return -9;}
YY_BREAK
case 15:
YY_RULE_SETUP
#line 88 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_string,comm_str,_string); BEGIN(INITIAL);return _string;}
YY_BREAK
case 16:
YY_RULE_SETUP
#line 92 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"if",IF);return IF;}
YY_BREAK
case 17:
YY_RULE_SETUP
#line 93 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"else",ELSE);return ELSE;}
YY_BREAK
case 18:
YY_RULE_SETUP
#line 94 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"while",WHILE);return WHILE;}
YY_BREAK
case 19:
YY_RULE_SETUP
#line 95 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"for",FOR);return FOR;}
YY_BREAK
case 20:
YY_RULE_SETUP
#line 96 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"function",FUNCTION);return FUNCTION;}
YY_BREAK
case 21:
YY_RULE_SETUP
#line 97 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"return",RETURN);return RETURN;}
YY_BREAK
case 22:
YY_RULE_SETUP
#line 98 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"break",BREAK);return BREAK;}
YY_BREAK
case 23:
YY_RULE_SETUP
#line 99 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"continue",CONTINUE);return CONTINUE;}
YY_BREAK
case 24:
YY_RULE_SETUP
#line 100 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"and",AND);return AND;}
YY_BREAK
case 25:
YY_RULE_SETUP
#line 101 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"not",NOT);return NOT;}
YY_BREAK
case 26:
YY_RULE_SETUP
#line 102 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"or",OR);return OR;}
YY_BREAK
case 27:
YY_RULE_SETUP
#line 103 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"local",LOCAL);return LOCAL;}
YY_BREAK
case 28:
YY_RULE_SETUP
#line 104 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"true",TRUE);return TRUE;}
YY_BREAK
case 29:
YY_RULE_SETUP
#line 105 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"false",FALSE);return FALSE;}
YY_BREAK
case 30:
YY_RULE_SETUP
#line 106 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"nil",NIL);return NIL;}
YY_BREAK
case 31:
YY_RULE_SETUP
#line 109 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"+",PLUS);return PLUS;}
YY_BREAK
case 32:
YY_RULE_SETUP
#line 110 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"-",MINUS);return MINUS;}
YY_BREAK
case 33:
YY_RULE_SETUP
#line 111 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"=",ASSIGN);return ASSIGN;}
YY_BREAK
case 34:
YY_RULE_SETUP
#line 112 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"*",STAR);return STAR;}
YY_BREAK
case 35:
YY_RULE_SETUP
#line 113 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"//",SLASH);return SLASH;}
YY_BREAK
case 36:
YY_RULE_SETUP
#line 114 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"/%",MODULE);return MODULE;}
YY_BREAK
case 37:
YY_RULE_SETUP
#line 115 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"==",EQUAL);return EQUAL;}
YY_BREAK
case 38:
YY_RULE_SETUP
#line 116 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"!=",NOTEQUAL);return NOTEQUAL;}
YY_BREAK
case 39:
YY_RULE_SETUP
#line 117 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"++",INCREMENT);return INCREMENT;}
YY_BREAK
case 40:
YY_RULE_SETUP
#line 118 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"--",DECREMENT);return DECREMENT;}
YY_BREAK
case 41:
YY_RULE_SETUP
#line 119 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"<",LOWER);return LOWER;}
YY_BREAK
case 42:
YY_RULE_SETUP
#line 120 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,">",GREATER);return GREATER;}
YY_BREAK
case 43:
YY_RULE_SETUP
#line 121 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"<=",LOWEREQUAL);return LOWEREQUAL;}
YY_BREAK
case 44:
YY_RULE_SETUP
#line 122 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,">=",GREATEREQUAL);return GREATEREQUAL;}
YY_BREAK
case 45:
YY_RULE_SETUP
#line 124 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"[",SQUAREBEGIN);return SQUAREBEGIN;}
YY_BREAK
case 46:
YY_RULE_SETUP
#line 125 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"]",SQUAREEND);return SQUAREEND;}
YY_BREAK
case 47:
YY_RULE_SETUP
#line 126 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"{",BLOCKBEGIN);return BLOCKBEGIN;}
YY_BREAK
case 48:
YY_RULE_SETUP
#line 127 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"}",BLOCKEND);return BLOCKEND;}
YY_BREAK
case 49:
YY_RULE_SETUP
#line 128 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"(",PARBEGIN);return PARBEGIN;}
YY_BREAK
case 50:
YY_RULE_SETUP
#line 129 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,")",PAREND);return PAREND;}
YY_BREAK
case 51:
YY_RULE_SETUP
#line 130 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,":",COLON);return COLON;}
YY_BREAK
case 52:
YY_RULE_SETUP
#line 131 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,",",COMMA);return COMMA;}
YY_BREAK
case 53:
YY_RULE_SETUP
#line 132 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,";",SEMICOLON);return SEMICOLON;}
YY_BREAK
case 54:
YY_RULE_SETUP
#line 133 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"::",DOUBLECOLON);return DOUBLECOLON;}
YY_BREAK
case 55:
YY_RULE_SETUP
#line 134 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,".",DOT);return DOT;}
YY_BREAK
case 56:
YY_RULE_SETUP
#line 135 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"..",DOUBLEDOT);return DOUBLEDOT;}
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(COMMENT2):
#line 137 "alpha.l"
{ return -1;}
YY_BREAK
case 57:
YY_RULE_SETUP
#line 139 "alpha.l"
{ comm_str="" ; yylval->init(yylineno,++tokenNumber,_id,(comm_str+=yytext),_id);return _id;}
YY_BREAK
case 58:
YY_RULE_SETUP
#line 141 "alpha.l"
{ comm_str="" ;yylval->init(yylineno,++tokenNumber,_int,(comm_str+=yytext),_int);return _int;}
YY_BREAK
case 59:
YY_RULE_SETUP
#line 143 "alpha.l"
{ comm_str="" ;yylval->init(yylineno,++tokenNumber,_real,(comm_str+=yytext),_real);return _real;}
YY_BREAK
case 60:
YY_RULE_SETUP
#line 145 "alpha.l"
{}
YY_BREAK
case 61:
/* rule 61 can match eol */
YY_RULE_SETUP
#line 147 "alpha.l"
{}
YY_BREAK
case 62:
YY_RULE_SETUP
#line 149 "alpha.l"
{ cerr << "Error Unrecognized Token :"<< yytext << " at line:" << yylineno << endl;return -2; }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 151 "alpha.l"
ECHO;
YY_BREAK
#line 1304 "lex.yy.c"

case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;

/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET

if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source.  It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* yylex().  If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals.  Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}

/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state).  Contrast this with the test
* in input().
*/
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;

(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;

yy_current_state = yy_get_previous_state(  );

/* Okay, we're now positioned to make the NUL
* transition.  We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/

yy_next_state = yy_try_NUL_trans( yy_current_state );

yy_bp = (yytext_ptr) + YY_MORE_ADJ;

if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++(yy_c_buf_p);
yy_current_state = yy_next_state;
goto yy_match;
}

else
{
yy_cp = (yy_c_buf_p);
goto yy_find_action;
}
}

else switch ( yy_get_next_buffer(  ) )
{
case EOB_ACT_END_OF_FILE:
{
(yy_did_buffer_switch_on_eof) = 0;

if ( yywrap( ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;

yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}

else
{
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
}
break;
}

case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) =
(yytext_ptr) + yy_amount_of_matched_text;

yy_current_state = yy_get_previous_state(  );

yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_match;

case EOB_ACT_LAST_MATCH:
(yy_c_buf_p) =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];

yy_current_state = yy_get_previous_state(  );

yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}

default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of yylex */

/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (void)
{
    register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
register char *source = (yytext_ptr);
register int number_to_move, i;
int ret_val;

if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );

if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}

else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}

/* Try to read more data. */

/* First move last chars to start of buffer. */
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;

for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);

if ( YY_C
 

Tsolias.Psolias

Ενεργό Μέλος
Εγγρ.
8 Ιουλ 2007
Μηνύματα
15.106
Like
28
Πόντοι
166
Εγώ φταίω ρε κομπιουτεράκια,που κάθησα να φτιάξω τη λίστα...... :jerking: :jerking: :jerking: :jerking: :jerking:
δεν είπα ρε μαλάκα ότι φταις, απλά κόψε το πολύ ίντερνετ, όπως και πολλοί άλλοι εδώ μέσα, γιατί καταντάει αρρώστια.
μην καίγεσαι άνευ λόγου και αιτίας, γιατί κανείς δεν θα σου δώσει ούτε 1 ευρώ γι' αυτό που έκανες...
 

διομήδης

Τιμημένος
Εγγρ.
26 Δεκ 2008
Μηνύματα
44.974
Like
30.411
Πόντοι
5.006
Η καλή δουλειά πρέπει να επιβραβεύεται.
Ο άνθρωπος ασχολήθηκε,έκανε σοβαρή και επισταμένη μελέτη και μας την παρουσίασε
well done kithara,well done  :thumbsup:
 

Tsolias.Psolias

Ενεργό Μέλος
Εγγρ.
8 Ιουλ 2007
Μηνύματα
15.106
Like
28
Πόντοι
166
έχεις δίκιο, άμα δεν το δεις ολοκληρωμένο δεν μπορείς να καταλάβεις τη χρησιμότητά του.
ποστάρω απλά το 1/10 που έχω έτοιμο μέχρι στιγμής, μόλις τελειώσει όλο το πρότζεκτ θα το βάλω για να δεις εν τέλει ότι δεν είναι και τόσο άχρηστο
:2funny: :2funny: :2funny:

εντιτ:είναι τρία αρχεία που χωρίζονται με ίσον
εντιτ2: δεν το παίρνει όλο γιατί είναι 6-7 χιλιάδες γραμμές....

/* Identify Bison output.  */
#define YYBISON 1

/* Bison version.  */
#define YYBISON_VERSION "2.4.2"

/* Skeleton name.  */
#define YYSKELETON_NAME "yacc.c"

/* Pure parsers.  */
#define YYPURE 0

/* Push parsers.  */
#define YYPUSH 0

/* Pull parsers.  */
#define YYPULL 1

/* Using locations.  */
#define YYLSP_NEEDED 0



/* Copy the first part of user declarations.  */

/* Line 189 of yacc.c  */
#line 1 "parser.y"

#include <stdio.h>
#include <iostream>
#include <vector>
#include <string>
#include <fstream>

int yyerror (char* yaccProvidedMessage);
int yylex (void);

extern int yylineno;
extern char* yytext;
extern FILE* yyin;


/* Line 189 of yacc.c  */
#line 88 "parser.cpp"

/* Enabling traces.  */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif

/* Enabling verbose error messages.  */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif

/* Enabling the token table.  */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif


/* Tokens.  */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
  /* Put the tokens into the symbol table, so that GDB and other debuggers
      know about them.  */
  enum yytokentype {
    ID = 258,
    STRING = 259,
    INTEGER = 260,
    REAL = 261,
    IF = 262,
    ELSE = 263,
    WHILE = 264,
    FOR = 265,
    FUNCTION = 266,
    RETURN = 267,
    BREAK = 268,
    CONTINUE = 269,
    AND = 270,
    NOT = 271,
    OR = 272,
    LOCAL = 273,
    TRUE = 274,
    FALSE = 275,
    NIL = 276,
    PLUS = 277,
    MINUS = 278,
    ASSIGN = 279,
    STAR = 280,
    SLASH = 281,
    MODULE = 282,
    EQUAL = 283,
    NOTEQUAL = 284,
    INCREMENT = 285,
    DECREMENT = 286,
    LOWER = 287,
    GREATER = 288,
    LOWEREQUAL = 289,
    GREATEREQUAL = 290,
    SQUAREBEGIN = 291,
    SQUAREEND = 292,
    BLOCKBEGIN = 293,
    BLOCKEND = 294,
    PARBEGIN = 295,
    PAREND = 296,
    COLON = 297,
    COMMA = 298,
    SEMICOLON = 299,
    DOUBLECOLON = 300,
    DOT = 301,
    DOUBLEDOT = 302,
    UMINUS = 303
  };
#endif
/* Tokens.  */
#define ID 258
#define STRING 259
#define INTEGER 260
#define REAL 261
#define IF 262
#define ELSE 263
#define WHILE 264
#define FOR 265
#define FUNCTION 266
#define RETURN 267
#define BREAK 268
#define CONTINUE 269
#define AND 270
#define NOT 271
#define OR 272
#define LOCAL 273
#define TRUE 274
#define FALSE 275
#define NIL 276
#define PLUS 277
#define MINUS 278
#define ASSIGN 279
#define STAR 280
#define SLASH 281
#define MODULE 282
#define EQUAL 283
#define NOTEQUAL 284
#define INCREMENT 285
#define DECREMENT 286
#define LOWER 287
#define GREATER 288
#define LOWEREQUAL 289
#define GREATEREQUAL 290
#define SQUAREBEGIN 291
#define SQUAREEND 292
#define BLOCKBEGIN 293
#define BLOCKEND 294
#define PARBEGIN 295
#define PAREND 296
#define COLON 297
#define COMMA 298
#define SEMICOLON 299
#define DOUBLECOLON 300
#define DOT 301
#define DOUBLEDOT 302
#define UMINUS 303




#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
{

/* Line 214 of yacc.c  */
#line 17 "parser.y"

int intValue;
double realValue;
char* stringValue;



/* Line 214 of yacc.c  */
#line 228 "parser.cpp"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
#endif


/* Copy the second part of user declarations.  */


/* Line 264 of yacc.c  */
#line 240 "parser.cpp"

#ifdef short
# undef short
#endif

#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#endif

#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__
    || defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif

#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif

#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif

#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
#  define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
#  define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__
    || defined __cplusplus || defined _MSC_VER)
#  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#  define YYSIZE_T size_t
# else
#  define YYSIZE_T unsigned int
# endif
#endif

#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)

#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
#  if ENABLE_NLS
#  include <libintl.h> /* INFRINGES ON USER NAME SPACE */
#  define YY_(msgid) dgettext ("bison-runtime", msgid)
#  endif
# endif
# ifndef YY_
#  define YY_(msgid) msgid
# endif
#endif

/* Suppress unused-variable warnings by "using" E.  */
#if ! defined lint || defined __GNUC__
# define YYUSE(e) ((void) (e))
#else
# define YYUSE(e) /* empty */
#endif

/* Identity function, used to suppress warnings about constant conditions.  */
#ifndef lint
# define YYID(n) (n)
#else
#if (defined __STDC__ || defined __C99__FUNC__
    || defined __cplusplus || defined _MSC_VER)
static int
YYID (int yyi)
#else
static int
YYID (yyi)
    int yyi;
#endif
{
  return yyi;
}
#endif

#if ! defined yyoverflow || YYERROR_VERBOSE

/* The parser invokes alloca or malloc; define the necessary symbols.  */

# ifdef YYSTACK_USE_ALLOCA
#  if YYSTACK_USE_ALLOCA
#  ifdef __GNUC__
#    define YYSTACK_ALLOC __builtin_alloca
#  elif defined __BUILTIN_VA_ARG_INCR
#    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
#  elif defined _AIX
#    define YYSTACK_ALLOC __alloca
#  elif defined _MSC_VER
#    include <malloc.h> /* INFRINGES ON USER NAME SPACE */
#    define alloca _alloca
#  else
#    define YYSTACK_ALLOC alloca
#    if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__
    || defined __cplusplus || defined _MSC_VER)
#    include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
#    ifndef _STDLIB_H
#      define _STDLIB_H 1
#    endif
#    endif
#  endif
#  endif
# endif

# ifdef YYSTACK_ALLOC
  /* Pacify GCC's `empty if-body' warning.  */
#  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
#  ifndef YYSTACK_ALLOC_MAXIMUM
    /* The OS might guarantee only one guard page at the bottom of the stack,
      and a page size can be as small as 4096 bytes.  So we cannot safely
      invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
      to allow for a few compiler-allocated temporary stack slots.  */
#  define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
#  endif
# else
#  define YYSTACK_ALLOC YYMALLOC
#  define YYSTACK_FREE YYFREE
#  ifndef YYSTACK_ALLOC_MAXIMUM
#  define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
#  endif
#  if (defined __cplusplus && ! defined _STDLIB_H
      && ! ((defined YYMALLOC || defined malloc)
    && (defined YYFREE || defined free)))
#  include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
#  ifndef _STDLIB_H
#    define _STDLIB_H 1
#  endif
#  endif
#  ifndef YYMALLOC
#  define YYMALLOC malloc
#  if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__
    || defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
#  endif
#  endif
#  ifndef YYFREE
#  define YYFREE free
#  if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__
    || defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
#  endif
#  endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */


#if (! defined yyoverflow
    && (! defined __cplusplus
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

/* A type that is properly aligned for any stack member.  */
union yyalloc
{
  yytype_int16 yyss_alloc;
  YYSTYPE yyvs_alloc;
};

/* The size of the maximum gap between one aligned stack and the next.  */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)

/* The size of an array large to enough to hold all stacks, each with
  N elements.  */
# define YYSTACK_BYTES(N)
    ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE))
      + YYSTACK_GAP_MAXIMUM)

/* Copy COUNT objects from FROM to TO.  The source and destination do
  not overlap.  */
# ifndef YYCOPY
#  if defined __GNUC__ && 1 < __GNUC__
#  define YYCOPY(To, From, Count)
      __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
#  else
#  define YYCOPY(To, From, Count)
      do
{
  YYSIZE_T yyi;
  for (yyi = 0; yyi < (Count); yyi++)
    (To)[yyi] = (From)[yyi];
}
      while (YYID (0))
#  endif
# endif

/* Relocate STACK from its old location to the new one.  The
  local variables YYSIZE and YYSTACKSIZE give the old and new number of
  elements in the stack, and YYPTR gives the new location of the
  stack.  Advance YYPTR to a properly aligned location for the next
  stack.  */
# define YYSTACK_RELOCATE(Stack_alloc, Stack)
    do
      {
YYSIZE_T yynewbytes;
YYCOPY (&yyptr->Stack_alloc, Stack, yysize);
Stack = &yyptr->Stack_alloc;
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM;
yyptr += yynewbytes / sizeof (*yyptr);
      }
    while (YYID (0))

#endif

/* YYFINAL -- State number of the termination state.  */
#define YYFINAL  70
/* YYLAST -- Last index in YYTABLE.  */
#define YYLAST  524

/* YYNTOKENS -- Number of terminals.  */
#define YYNTOKENS  49
/* YYNNTS -- Number of nonterminals.  */
#define YYNNTS  33
/* YYNRULES -- Number of rules.  */
#define YYNRULES  94
/* YYNRULES -- Number of states.  */
#define YYNSTATES  162

/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
#define YYUNDEFTOK  2
#define YYMAXUTOK  303

#define YYTRANSLATE(YYX)
  ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)

/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
static const yytype_uint8 yytranslate[] =
{
      0,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
      2,    2,    2,    2,    2,    2,    1,    2,    3,    4,
      5,    6,    7,    8,    9,    10,    11,    12,    13,    14,
      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
      25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
      35,    36,    37,    38,    39,    40,    41,    42,    43,    44,
      45,    46,    47,    48
};

#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  YYRHS.  */
static const yytype_uint16 yyprhs[] =
{
      0,    0,    3,    5,    8,    10,    12,    14,    16,    19,
      22,    24,    26,    28,    29,    32,    34,    38,    40,    42,
      44,    46,    48,    50,    52,    54,    56,    58,    60,    62,
      64,    66,    70,    73,    76,    79,    82,    85,    88,    90,
      94,    96,    98,  100,  104,  106,  108,  111,  114,  116,
    120,  125,  129,  134,  139,  142,  149,  151,  153,  157,
    162,  163,  165,  169,  171,  175,  179,  181,  183,  185,
    187,  188,  192,  198,  202,  209,  210,  212,  214,  216,
    218,  220,  222,  224,  225,  227,  231,  233,  237,  244,
    247,  248,  254,  264,  267
};

/* YYRHS -- A `-1'-separated list of the rules' RHS.  */
static const yytype_int8 yyrhs[] =
{
      50,    0,    -1,    52,    -1,    53,    44,    -1,    77,    -1,
      79,    -1,    80,    -1,    81,    -1,    13,    44,    -1,    14,
      44,    -1,    71,    -1,    72,    -1,    44,    -1,    -1,    51,
      52,    -1,    56,    -1,    53,    54,    53,    -1,    55,    -1,
      22,    -1,    23,    -1,    25,    -1,    26,    -1,    27,    -1,
      33,    -1,    35,    -1,    32,    -1,    34,    -1,    28,    -1,
      29,    -1,    15,    -1,    17,    -1,    40,    53,    41,    -1,
      23,    53,    -1,    16,    53,    -1,    30,    58,    -1,    58,
      30,    -1,    31,    58,    -1,    58,    31,    -1,    57,    -1,
      58,    24,    53,    -1,    58,    -1,    60,    -1,    66,    -1,
      40,    72,    41,    -1,    74,    -1,    3,    -1,    18,    3,
      -1,    45,    3,    -1,    59,    -1,    58,    46,    3,    -1,
      58,    36,    53,    37,    -1,    60,    46,    3,    -1,    60,
      36,    53,    36,    -1,    60,    40,    64,    41,    -1,    58,
      61,    -1,    40,    72,    41,    40,    64,    41,    -1,    62,
      -1,    63,    -1,    40,    64,    41,    -1,    47,    40,    64,
      41,    -1,    -1,    53,    -1,    53,    43,    65,    -1,    53,
      -1,    53,    43,    65,    -1,    36,    67,    37,    -1,    64,
      -1,    68,    -1,    70,    -1,    69,    -1,    -1,    70,    43,
      68,    -1,    38,    53,    42,    53,    39,    -1,    38,    52,
      39,    -1,    11,    73,    40,    75,    41,    71,    -1,    -1,
      3,    -1,    5,    -1,    6,    -1,    4,    -1,    21,    -1,
      19,    -1,    20,    -1,    -1,    3,    -1,    3,    43,    76,
      -1,    3,    -1,    3,    43,    76,    -1,    7,    40,    53,
      41,    51,    78,    -1,    8,    51,    -1,    -1,    9,    40,
      53,    41,    51,    -1,    10,    40,    64,    44,    53,    44,
      64,    41,    51,    -1,    12,    44,    -1,    12,    53,    44,
      -1
};

/* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
static const yytype_uint8 yyrline[] =
{
      0,    49,    49,    52,    53,    54,    55,    56,    57,    58,
      59,    60,    61,    64,    65,    68,    69,    70,    73,    74,
      75,    76,    77,    78,    79,    80,    81,    82,    83,    84,
      85,    88,    89,    90,    91,    92,    93,    94,    95,    98,
    101,  102,  103,  104,  105,  108,  109,  110,  111,  114,
    115,  116,  117,  120,  121,  122,  125,  126,  129,  132,
    135,  136,  137,  140,  141,  144,  147,  148,  151,  152,
    155,  156,  159,  162,  165,  168,  169,  172,  173,  174,
    175,  176,  177,  180,  181,  182,  185,  186,  189,  192,
    193,  196,  199,  202,  203
};
#endif

#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
static const char *const yytname[] =
{
  "$end", "error", "$undefined", "ID", "STRING", "INTEGER", "REAL", "IF",
  "ELSE", "WHILE", "FOR", "FUNCTION", "RETURN", "BREAK", "CONTINUE", "AND",
  "NOT", "OR", "LOCAL", "TRUE", "FALSE", "NIL", "PLUS", "MINUS", "ASSIGN",
  "STAR", "SLASH", "MODULE", "EQUAL", "NOTEQUAL", "INCREMENT", "DECREMENT",
  "LOWER", "GREATER", "LOWEREQUAL", "GREATEREQUAL", "SQUAREBEGIN",
  "SQUAREEND", "BLOCKBEGIN", "BLOCKEND", "PARBEGIN", "PAREND", "COLON",
  "COMMA", "SEMICOLON", "DOUBLECOLON", "DOT", "DOUBLEDOT", "UMINUS",
  "$accept", "program", "stmt", "stmts", "expr", "op", "term",
  "assignexpr", "primary", "lvalue", "member", "call", "callsuffx",
  "normcall", "methodcall", "elist", "elist2", "objectdef",
  "elistorindexed", "indexed", "indexed2", "indexedelem", "block",
  "funcdef", "fid", "const", "idlist", "idlist2", "ifstmt", "elsestmt",
  "whilestmt", "forstmt", "returnstmt", 0
};
#endif

# ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  token YYLEX-NUM.  */
static const yytype_uint16 yytoknum[] =
{
      0,  256,  257,  258,  259,  260,  261,  262,  263,  264,
    265,  266,  267,  268,  269,  270,  271,  272,  273,  274,
    275,  276,  277,  278,  279,  280,  281,  282,  283,  284,
    285,  286,  287,  288,  289,  290,  291,  292,  293,  294,
    295,  296,  297,  298,  299,  300,  301,  302,  303
};
# endif

/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
static const yytype_uint8 yyr1[] =
{
      0,    49,    50,    51,    51,    51,    51,    51,    51,    51,
      51,    51,    51,    52,    52,    53,    53,    53,    54,    54,
      54,    54,    54,    54,    54,    54,    54,    54,    54,    54,
      54,    55,    55,    55,    55,    55,    55,    55,    55,    56,
      57,    57,    57,    57,    57,    58,    58,    58,    58,    59,
      59,    59,    59,    60,    60,    60,    61,    61,    62,    63,
      64,    64,    64,    65,    65,    66,    67,    67,    68,    68,
      69,    69,    70,    71,    72,    73,    73,    74,    74,    74,
      74,    74,    74,    75,    75,    75,    76,    76,    77,    78,
      78,    79,    80,    81,    81
};

/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
static const yytype_uint8 yyr2[] =
{
      0,    2,    1,    2,    1,    1,    1,    1,    2,    2,
      1,    1,    1,    0,    2,    1,    3,    1,    1,    1,
      1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
      1,    3,    2,    2,    2,    2,    2,    2,    1,    3,
      1,    1,    1,    3,    1,    1,    2,    2,    1,    3,
      4,    3,    4,    4,    2,    6,    1,    1,    3,    4,
      0,    1,    3,    1,    3,    3,    1,    1,    1,    1,
      0,    3,    5,    3,    6,    0,    1,    1,    1,    1,
      1,    1,    1,    0,    1,    3,    1,    3,    6,    2,
      0,    5,    9,    2,    3
};

/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
  STATE-NUM when YYTABLE doesn't specify something else to do.  Zero
  means the default is an error.  */
static const yytype_uint8 yydefact[] =
{
      13,    45,    79,    77,    78,    0,    0,    0,    75,    0,
      0,    0,    0,    0,    81,    82,    80,    0,    0,    0,
      60,    13,    0,    12,    0,    0,    13,    2,    0,    17,
      15,    38,    40,    48,    41,    42,    10,    11,    44,    4,
      5,    6,    7,    0,    0,    60,    76,    0,    93,    0,
      8,    9,    33,    46,    32,    0,    34,    0,    36,    0,
      61,    66,    0,    67,    69,    68,    0,    0,    0,    47,
      1,    14,    29,    30,    18,    19,    20,    21,    22,    27,
      28,    25,    23,    26,    24,    3,    0,    0,    35,    37,
      0,    60,    0,    0,    54,    56,    57,    0,    60,    0,
      0,    0,    0,    83,    94,    0,    0,    0,    65,    70,
      73,    31,    43,    16,    39,    0,    0,    49,    60,    0,
      0,    51,    0,    0,    0,    84,    0,    0,    0,    63,
      62,    71,    60,    50,    58,    0,    52,    53,    90,    91,
      0,    0,    0,    0,    0,    0,    59,    0,    88,    60,
      86,    85,    74,    72,    64,    55,    89,    0,    0,    0,
      87,    92
};

/* YYDEFGOTO[NTERM-NUM].  */
static const yytype_int16 yydefgoto[] =
{
      -1,    25,    26,    27,    28,    86,    29,    30,    31,    32,
      33,    34,    94,    95,    96,    61,  130,    35,    62,    63,
      64,    65,    36,    37,    47,    38,  126,  151,    39,  148,
      40,    41,    42
};

/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  STATE-NUM.  */
#define YYPACT_NINF -122
static const yytype_int16 yypact[] =
{
    138,  -122,  -122,  -122,  -122,  -35,  -33,  -31,    14,    24,
    -11,    -5,  204,    34,  -122,  -122,  -122,  204,    1,    1,
    181,  138,    81,  -122,    46,    53,  138,  -122,  228,  -122,
    -122,  -122,    27,  -122,  -24,  -122,  -122,  -122,  -122,  -122,
    -122,  -122,  -122,  204,  204,  204,  -122,    16,  -122,  251,
    -122,  -122,  -122,  -122,  -122,    50,  -26,  -24,  -26,  204,
    297,  -122,    25,  -122,  -122,    22,    31,  362,    30,  -122,
    -122,  -122,  -122,  -122,  -122,  -122,  -122,  -122,  -122,  -122,
    -122,  -122,  -122,  -122,  -122,  -122,  204,  204,  -122,  -122,
    204,  204,    63,    32,  -122,  -122,  -122,  204,  204,    72,
    383,  404,    36,    73,  -122,    42,  341,  204,  -122,    52,
    -122,  -122,    51,  489,  489,  446,    54,  -122,  204,  467,
      55,  -122,  138,  138,  204,    60,    64,    51,  204,  319,
    -122,  -122,  204,  -122,  -122,    65,  -122,  -122,    86,  -122,
    274,  104,    70,  425,  204,    75,  -122,  138,  -122,  204,
      71,  -122,  -122,  -122,  -122,  -122,  -122,    77,  104,  138,
    -122,  -122
};

/* YYPGOTO[NTERM-NUM].  */
static const yytype_int8 yypgoto[] =
{
    -122,  -122,  -121,    -3,    -9,  -122,  -122,  -122,  -122,    6,
    -122,    13,  -122,  -122,  -122,  -39,  -22,  -122,  -122,    4,
    -122,  -122,  -18,    -7,  -122,  -122,  -122,  -38,  -122,  -122,
    -122,  -122,  -122
};

/* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  positive, shift that token.  If negative, reduce the rule which
  number is the opposite.  If zero, do what YYDEFACT says.
  If YYTABLE_NINF, syntax error.  */
#define YYTABLE_NINF -1
static const yytype_uint8 yytable[] =
{
      49,  138,  139,    52,    1,    43,  102,    44,    54,    45,
      90,    60,    97,    67,    91,    68,    98,    46,    66,    13,
      92,    93,    99,    71,    56,    58,  156,    1,    2,    3,
      4,    57,    57,    50,  100,  101,    60,    53,  161,    51,
      12,    55,    13,    14,    15,    16,    24,    17,  105,    69,
    106,    87,  116,    70,    18,    19,  103,    88,    89,  120,
      20,    8,  108,    90,    22,  109,  117,    91,    48,    24,
    110,  112,  118,    92,    93,  121,  125,  113,  114,  135,
    124,  115,    60,  127,    1,    2,    3,    4,  119,    60,
      59,  132,    8,  145,  147,  134,  137,    12,  129,    13,
      14,    15,    16,  141,    17,  142,  146,  150,    21,    60,
    157,    18,    19,  131,  158,  140,  155,    20,  159,  143,
    160,    22,  154,    60,  152,    0,    24,    0,    0,    0,
      0,    0,    0,    0,    0,  129,    0,    0,    0,    0,
      60,    1,    2,    3,    4,    5,    0,    6,    7,    8,
      9,    10,    11,    0,    12,    0,    13,    14,    15,    16,
      0,    17,    0,    0,    0,    0,    0,    0,    18,    19,
      0,    0,    0,    0,    20,    0,    21,    0,    22,    0,
      0,    0,    23,    24,    1,    2,    3,    4,    0,    0,
      0,    0,    0,    0,    0,    0,    0,    12,    0,    13,
      14,    15,    16,    0,    17,    0,    0,    1,    2,    3,
      4,    18,    19,    0,    0,    0,    0,    20,    0,    59,
      12,    22,    13,    14,    15,    16,    24,    17,    0,    0,
      0,    0,    0,    0,    18,    19,    0,    0,    0,    0,
      20,    0,    0,    72,    22,    73,    0,    0,    0,    24,
      74,    75,    0,    76,    77,    78,    79,    80,    0,    0,
      81,    82,    83,    84,    0,    0,    72,    0,    73,    0,
      0,    0,    85,    74,    75,    0,    76,    77,    78,    79,
      80,    0,    0,    81,    82,    83,    84,    0,    0,    72,
      0,    73,    0,    0,    0,  104,    74,    75,    0,    76,
      77,    78,    79,    80,    0,    0,    81,    82,    83,    84,
      0,    0,    72,    0,    73,    0,    0,    0,  149,    74,
      75,    0,    76,    77,    78,    79,    80,    0,    0,    81,
      82,    83,    84,    0,    72,    0,    73,    0,    0,    0,
    107,    74,    75,    0,    76,    77,    78,    79,    80,    0,
      0,    81,    82,    83,    84,    0,    72,    0,    73,    0,
      0,    0,  144,    74,    75,    0,    76,    77,    78,    79,
      80,    0,    0,    81,    82,    83,    84,    72,    0,    73,
      0,    0,    0,  128,    74,    75,    0,    76,    77,    78,
      79,    80,    0,    0,    81,    82,    83,    84,    72,    0,
      73,    0,    0,  111,    0,    74,    75,    0,    76,    77,
      78,    79,    80,    0,    0,    81,    82,    83,    84,    72,
      0,    73,    0,    0,  122,    0,    74,    75,    0,    76,
      77,    78,    79,    80,    0,    0,    81,    82,    83,    84,
      72,    0,    73,    0,    0,  123,    0,    74,    75,    0,
      76,    77,    78,    79,    80,    0,    0,    81,    82,    83,
      84,    72,    0,    73,  153,    0,    0,    0,    74,    75,
      0,    76,    77,    78,    79,    80,    0,    0,    81,    82,
      83,    84,    72,  133,    73,    0,    0,    0,    0,    74,
      75,    0,    76,    77,    78,    79,    80,    0,    0,    81,
      82,    83,    84,  136,    72,    0,    73,    0,    0,    0,
      0,    74,    75,    0,    76,    77,    78,    79,    80,    0,
      0,    81,    82,    83,    84
};

static const yytype_int16 yycheck[] =
{
      9,  122,  123,    12,    3,    40,    45,    40,    17,    40,
      36,    20,    36,    22,    40,    22,    40,    3,    21,    18,
      46,    47,    46,    26,    18,    19,  147,    3,    4,    5,
      6,    18,    19,    44,    43,    44,    45,    3,  159,    44,
      16,    40,    18,    19,    20,    21,    45,    23,    55,    3,
      59,    24,    91,    0,    30,    31,    40,    30,    31,    98,
      36,    11,    37,    36,    40,    43,    3,    40,    44,    45,
      39,    41,    40,    46,    47,    3,    3,    86,    87,  118,
      44,    90,    91,    41,    3,    4,    5,    6,    97,    98,
      38,    40,    11,  132,    8,    41,    41,    16,  107,    18,
      19,    20,    21,    43,    23,    41,    41,    3,    38,  118,
    149,    30,    31,  109,    43,  124,    41,    36,    41,  128,
    158,    40,  144,  132,  142,    -1,    45,    -1,    -1,    -1,
      -1,    -1,    -1,    -1,    -1,  144,    -1,    -1,    -1,    -1,
    149,    3,    4,    5,    6,    7,    -1,    9,    10,    11,
      12,    13,    14,    -1,    16,    -1,    18,    19,    20,    21,
      -1,    23,    -1,    -1,    -1,    -1,    -1,    -1,    30,    31,
      -1,    -1,    -1,    -1,    36,    -1,    38,    -1,    40,    -1,
      -1,    -1,    44,    45,    3,    4,    5,    6,    -1,    -1,
      -1,    -1,    -1,    -1,    -1,    -1,    -1,    16,    -1,    18,
      19,    20,    21,    -1,    23,    -1,    -1,    3,    4,    5,
      6,    30,    31,    -1,    -1,    -1,    -1,    36,    -1,    38,
      16,    40,    18,    19,    20,    21,    45,    23,    -1,    -1,
      -1,    -1,    -1,    -1,    30,    31,    -1,    -1,    -1,    -1,
      36,    -1,    -1,    15,    40,    17,    -1,    -1,    -1,    45,
      22,    23,    -1,    25,    26,    27,    28,    29,    -1,    -1,
      32,    33,    34,    35,    -1,    -1,    15,    -1,    17,    -1,
      -1,    -1,    44,    22,    23,    -1,    25,    26,    27,    28,
      29,    -1,    -1,    32,    33,    34,    35,    -1,    -1,    15,
      -1,    17,    -1,    -1,    -1,    44,    22,    23,    -1,    25,
      26,    27,    28,    29,    -1,    -1,    32,    33,    34,    35,
      -1,    -1,    15,    -1,    17,    -1,    -1,    -1,    44,    22,
      23,    -1,    25,    26,    27,    28,    29,    -1,    -1,    32,
      33,    34,    35,    -1,    15,    -1,    17,    -1,    -1,    -1,
      43,    22,    23,    -1,    25,    26,    27,    28,    29,    -1,
      -1,    32,    33,    34,    35,    -1,    15,    -1,    17,    -1,
      -1,    -1,    43,    22,    23,    -1,    25,    26,    27,    28,
      29,    -1,    -1,    32,    33,    34,    35,    15,    -1,    17,
      -1,    -1,    -1,    42,    22,    23,    -1,    25,    26,    27,
      28,    29,    -1,    -1,    32,    33,    34,    35,    15,    -1,
      17,    -1,    -1,    41,    -1,    22,    23,    -1,    25,    26,
      27,    28,    29,    -1,    -1,    32,    33,    34,    35,    15,
      -1,    17,    -1,    -1,    41,    -1,    22,    23,    -1,    25,
      26,    27,    28,    29,    -1,    -1,    32,    33,    34,  &nb
 

master21

Ενεργό Μέλος
Εγγρ.
3 Μαρ 2010
Μηνύματα
35.254
Κριτικές
1
Like
38
Πόντοι
366
είμαι απασχολημένος με άλλα πράγματα, διαφορετικά κατά καιρούς... τώρα να πούμε


#line 3 "lex.yy.c"

#define  YY_INT_ALIGNED short int

/* A lexical scanner generated by flex */

#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 35
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif

/* First, we deal with  platform-specific or compiler-specific issues. */

/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>

/* end standard C headers. */

/* flex integer type definitions */

#ifndef FLEXINT_H
#define FLEXINT_H

/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */

#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L

/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif

#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
#endif /* ! C99 */

/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN               (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN              (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN              (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX               (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX              (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX              (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX              (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX             (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX             (4294967295U)
#endif

#endif /* ! FLEXINT_H */

#ifdef __cplusplus

/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST

#else /* ! __cplusplus */

/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)

#define YY_USE_CONST

#endif /* defined (__STDC__) */
#endif /* ! __cplusplus */

#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif

/* Returned upon end-of-file. */
#define YY_NULL 0

/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index.  If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)

/* Enter a start condition.  This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN (yy_start) = 1 + 2 *

/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state.  The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START

/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)

/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart(yyin  )

#define YY_END_OF_BUFFER_CHAR 0

/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#endif

/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))

#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif

extern int yyleng;

extern FILE *yyin, *yyout;

#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2

   /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires
    *       access to the local variable yy_act. Since yyless() is a macro, it would break
    *       existing scanners that call yyless() from OUTSIDE yylex.
    *       One obvious solution it to make yy_act a global. I tried that, and saw
    *       a 5% performance hit in a non-yylineno scanner, because yy_act is
    *       normally declared as a register variable-- so it is not worth it.
    */
   #define  YY_LESS_LINENO(n)
           do {
               int yyl;
               for ( yyl = n; yyl < yyleng; ++yyl )
                   if ( yytext[yyl] == 'n' )
                       --yylineno;
           }while(0)
   
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n)
do
{
/* Undo effects of setting up yytext. */
       int yyless_macro_arg = (n);
       YY_LESS_LINENO(yyless_macro_arg);
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ;
YY_DO_BEFORE_ACTION; /* set up yytext again */
}
while ( 0 )

#define unput(c) yyunput( c, (yytext_ptr)  )

#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif

#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
FILE *yy_input_file;

char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */

/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
yy_size_t yy_buf_size;

/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
int yy_n_chars;

/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;

/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;

/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;

   int yy_bs_lineno; /**< The line count. */
   int yy_bs_column; /**< The column count. */
   
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;

int yy_buffer_status;

#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more.  We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2

};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */

/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */

/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( (yy_buffer_stack)
                         ? (yy_buffer_stack)[(yy_buffer_stack_top)]
                         : NULL)

/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]

/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;
static int yy_n_chars; /* number of characters read into yy_ch_buf */
int yyleng;

/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 0; /* whether we need to initialize */
static int yy_start = 0; /* start state number */

/* Flag which is used to allow yywrap()'s to do buffer switches
* instead of setting up a fresh yyin.  A bit of a hack ...
*/
static int yy_did_buffer_switch_on_eof;

void yyrestart (FILE *input_file  );
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
void yy_delete_buffer (YY_BUFFER_STATE b  );
void yy_flush_buffer (YY_BUFFER_STATE b  );
void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
void yypop_buffer_state (void );

static void yyensure_buffer_stack (void );
static void yy_load_buffer_state (void );
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );

#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )

YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );

void *yyalloc (yy_size_t  );
void *yyrealloc (void *,yy_size_t  );
void yyfree (void *  );

#define yy_new_buffer yy_create_buffer

#define yy_set_interactive(is_interactive)
{
if ( ! YY_CURRENT_BUFFER ){
       yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =    
           yy_create_buffer(yyin,YY_BUF_SIZE );
}
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive;
}

#define yy_set_bol(at_bol)
{
if ( ! YY_CURRENT_BUFFER ){
       yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =    
           yy_create_buffer(yyin,YY_BUF_SIZE );
}
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol;
}

#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)

/* Begin user sect3 */

#define yywrap(n) 1
#define YY_SKIP_YYWRAP

typedef unsigned char YY_CHAR;

FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;

typedef int yy_state_type;

#define YY_FLEX_LEX_COMPAT
extern int yylineno;

int yylineno = 1;

extern char yytext[];

static yy_state_type yy_get_previous_state (void );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
static int yy_get_next_buffer (void );
static void yy_fatal_error (yyconst char msg[]  );

/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION
(yytext_ptr) = yy_bp;
yyleng = (size_t) (yy_cp - yy_bp);
(yy_hold_char) = *yy_cp;
*yy_cp = '0';
if ( yyleng + (yy_more_offset) >= YYLMAX )
YY_FATAL_ERROR( "token too large, exceeds YYLMAX" );
yy_flex_strncpy( &yytext[(yy_more_offset)], (yytext_ptr), yyleng + 1 );
yyleng += (yy_more_offset);
(yy_prev_more_offset) = (yy_more_offset);
(yy_more_offset) = 0;
(yy_c_buf_p) = yy_cp;

#define YY_NUM_RULES 63
#define YY_END_OF_BUFFER 64
/* This struct is not used in this scanner,
  but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst flex_int16_t yy_acclist[228] =
   {   0,
      60,   61,   60,   61,    4,    4,    2,    2,   10,   10,
      64,   62,   63,   60,   62,   63,   61,   63,   62,   63,
       9,   62,   63,   36,   62,   63,   49,   62,   63,   50,
      62,   63,   34,   62,   63,   31,   62,   63,   52,   62,
      63,   32,   62,   63,   55,   62,   63,   35,   62,   63,
      58,   62,   63,   51,   62,   63,   53,   62,   63,   41,
      62,   63,   33,   62,   63,   42,   62,   63,   57,   62,
      63,   45,   62,   63,   46,   62,   63,   57,   62,   63,
      57,   62,   63,   57,   62,   63,   57,   62,   63,   57,
      62,   63,   57,   62,   63,   57,   62,   63,   57,   62,

      63,   57,   62,   63,   57,   62,   63,   57,   62,   63,
      57,   62,   63,   47,   62,   63,   48,   62,   63,    4,
      63,   63,   63,    2,   63,   63,   10,   63,   15,   63,
      63,   60,   61,   38,   39,   40,   56,    3,    1,   58,
      54,   43,   37,   44,   57,   57,   57,   57,   57,   57,
      57,   57,   57,   57,   16,   57,   57,   57,   57,   26,
      57,   57,   57,   57,    4,    7,    8,    5,    6,    2,
      10,   13,   14,   11,   12,   59,   58,   59,   24,   57,
      57,   57,   57,   57,   19,   57,   57,   57,   30,   57,
      25,   57,   57,   57,   57,   57,   57,   17,   57,   57,

      57,   57,   57,   28,   57,   57,   22,   57,   57,   29,
      57,   57,   27,   57,   57,   18,   57,   57,   57,   21,
      57,   57,   57,   23,   57,   20,   57
   } ;

static yyconst flex_int16_t yy_accept[140] =
   {   0,
       1,    3,    5,    6,    7,    8,    9,   10,   11,   12,
      14,   17,   19,   21,   24,   27,   30,   33,   36,   39,
      42,   45,   48,   51,   54,   57,   60,   63,   66,   69,
      72,   75,   78,   81,   84,   87,   90,   93,   96,   99,
     102,  105,  108,  111,  114,  117,  120,  122,  123,  124,
     126,  127,  129,  131,  132,  133,  134,  135,  136,  137,
     138,  139,  140,  140,  141,  142,  143,  144,  145,  146,
     147,  148,  149,  150,  151,  152,  153,  154,  155,  157,
     158,  159,  160,  162,  163,  164,  165,  166,  167,  167,
     168,  169,  170,  170,  171,  172,  173,  174,  175,  176,

     177,  179,  181,  182,  183,  184,  185,  187,  188,  189,
     191,  193,  194,  195,  196,  197,  198,  200,  201,  202,
     203,  204,  206,  207,  209,  210,  212,  213,  215,  216,
     218,  219,  220,  222,  223,  224,  226,  228,  228
   } ;

static yyconst flex_int32_t yy_ec[256] =
   {   0,
       1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    2,    4,    5,    1,    1,    6,    1,    1,    7,
       8,    9,   10,   11,   12,   13,   14,   15,   15,   15,
      15,   15,   15,   15,   15,   15,   15,   16,   17,   18,
      19,   20,    1,    1,   21,   21,   21,   21,   21,   21,
      21,   21,   21,   21,   21,   21,   21,   21,   21,   21,
      21,   21,   21,   21,   21,   21,   21,   21,   21,   21,
      22,   23,   24,    1,   25,    1,   26,   27,   28,   29,

      30,   31,   32,   33,   34,   21,   35,   36,   21,   37,
      38,   21,   21,   39,   40,   41,   42,   21,   43,   21,
      21,   21,   44,    1,   45,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1
   } ;

static yyconst flex_int32_t yy_meta[46] =
   {   0,
       1,    1,    2,    1,    3,    1,    1,    1,    4,    1,
       1,    1,    1,    4,    1,    1,    1,    1,    1,    1,
       1,    1,    3,    1,    5,    5,    1,    5,    5,    1,
       1,    5,    5,    5,    1,    1,    3,    1,    5,    1,
       6,    1,    1,    5,    5
   } ;

static yyconst flex_int16_t yy_base[149] =
   {   0,
       0,    0,   37,   38,  216,  215,   43,   44,  217,  220,
     214,  212,  195,  220,  220,  220,  220,  220,  203,  220,
     200,  198,   41,  195,  193,  220,  189,  188,  187,   65,
     220,  220,  168,  165,  161,  156,   27,  145,  130,   20,
     107,  115,  103,  108,  220,  220,    0,   47,   48,    0,
     220,    0,  220,  106,  138,  136,  220,  220,  220,  220,
     220,  220,  123,  122,  220,  220,  220,  220,    0,    0,
       0,  107,  105,   97,   93,   96,   92,   91,    0,   99,
      90,   84,    0,   83,   81,   88,    0,  220,   50,  220,
     220,  220,   54,    0,    0,  220,  107,  220,  220,  106,

     105,    0,   93,   77,   87,   76,    0,   87,   88,    0,
       0,   71,   59,   52,   52,   49,    0,   52,   38,   42,
      38,    0,   46,    0,   38,    0,   40,    0,   36,    0,
      30,   33,    0,   40,   23,    0,    0,  220,  148,  154,
     160,  166,  172,  178,  184,  190,  196,  197
   } ;

static yyconst flex_int16_t yy_def[149] =
   {   0,
     138,    1,  139,  139,  140,  140,  141,  141,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  142,  138,  138,  138,  138,  138,  138,
     138,  138,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,  138,  138,  143,  144,  145,  146,
     138,  147,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  142,  138,  138,  138,  138,   30,  148,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,  143,  138,  144,  138,
     138,  138,  145,  146,  147,  138,  138,  138,  138,  138,

     142,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      30,   30,   30,   30,   30,   30,   30,    0,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138
   } ;

static yyconst flex_int16_t yy_nxt[266] =
   {   0,
      10,   11,   12,   13,   14,   15,   16,   17,   18,   19,
      20,   21,   22,   23,   24,   25,   26,   27,   28,   29,
      30,   31,   10,   32,   10,   33,   34,   35,   30,   36,
      37,   30,   30,   38,   30,   39,   40,   41,   42,   30,
      43,   30,   44,   45,   46,   48,   48,   53,   53,   61,
      49,   49,   76,   81,   62,   89,   92,   82,   89,  137,
      90,   93,   92,   90,   77,   54,   54,   93,   78,  136,
     135,  134,  133,  132,  131,  130,  129,  128,  127,   51,
      51,  126,  125,   51,   51,   69,  124,  123,  122,   70,
      71,   69,   71,   71,   69,   69,   71,   71,   71,   69,

      69,   69,   69,   71,   69,   71,   69,   69,   70,   70,
      96,   96,  121,  120,  119,  118,  117,  116,  115,  101,
     100,  114,  113,  112,  111,  110,  109,  108,   97,   97,
     107,  106,  105,  104,  103,  102,  101,  100,   56,   55,
      86,   85,   98,   98,   84,   83,   99,   99,   47,   47,
      47,   47,   47,   47,   50,   50,   50,   50,   50,   50,
      52,   52,   52,   52,   52,   52,   63,   80,   63,   63,
      63,   63,   87,   87,   87,   79,   87,   87,   88,   88,
      88,   88,   88,   88,   91,   91,   91,   91,   91,   91,
      94,   75,   94,   94,   94,   94,   95,   95,   74,   95,

      95,   70,   70,   73,   72,   68,   67,   66,   65,   64,
      60,   59,   58,   57,   56,   55,  138,   51,   51,    9,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138
   } ;

static yyconst flex_int16_t yy_chk[266] =
   {   0,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
       1,    1,    1,    1,    1,    3,    4,    7,    8,   23,
       3,    4,   37,   40,   23,   48,   49,   40,   89,  135,
      48,   49,   93,   89,   37,    7,    8,   93,   37,  134,
     132,  131,  129,  127,  125,  123,  121,  120,  119,    7,
       8,  118,  116,    7,    8,   30,  115,  114,  113,   30,
      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,

      30,   30,   30,   30,   30,   30,   30,   30,   30,   30,
      54,   97,  112,  109,  108,  106,  105,  104,  103,  101,
     100,   86,   85,   84,   82,   81,   80,   78,   54,   97,
      77,   76,   75,   74,   73,   72,   64,   63,   56,   55,
      44,   43,   54,   97,   42,   41,   54,   97,  139,  139,
     139,  139,  139,  139,  140,  140,  140,  140,  140,  140,
     141,  141,  141,  141,  141,  141,  142,   39,  142,  142,
     142,  142,  143,  143,  143,   38,  143,  143,  144,  144,
     144,  144,  144,  144,  145,  145,  145,  145,  145,  145,
     146,   36,  146,  146,  146,  146,  147,  147,   35,  147,

     147,  148,  148,   34,   33,   29,   28,   27,   25,   24,
      22,   21,   19,   13,   12,   11,    9,    6,    5,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138,  138,  138,  138,  138,  138,
     138,  138,  138,  138,  138
   } ;

/* Table of booleans, true if rule could match eol. */
static yyconst flex_int32_t yy_rule_can_match_eol[64] =
   {   0,
0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
   0, 1, 0, 0,     };

extern int yy_flex_debug;
int yy_flex_debug = 0;

static yy_state_type *yy_state_buf=0, *yy_state_ptr=0;
static char *yy_full_match;
static int yy_lp;
#define REJECT
{
*yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
yy_cp = (yy_full_match); /* restore poss. backed-over text */
++(yy_lp);
goto find_rule;
}

static int yy_more_offset = 0;
static int yy_prev_more_offset = 0;
#define yymore() ((yy_more_offset) = yy_flex_strlen( yytext ))
#define YY_NEED_STRLEN
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
{
(yy_more_offset) = (yy_prev_more_offset);
yyleng -= (yy_more_offset);
}
#ifndef YYLMAX
#define YYLMAX 8192
#endif

char yytext[YYLMAX];
char *yytext_ptr;
#line 1 "alpha.l"
#line 2 "alpha.l"
#include <iostream>
#include <vector>
#include <string>
#include <fstream>

#define YY_DECL int alpha_yylex (Token* yylval) /*malon den einai void* */

using namespace std;

int lineNumber = 0;
int tokenNumber=0;
int comms=0;
   string comm_str;

typedef enum
{
_key,_op,_int,_real,_string,_mark,_id,_comm,
IF,ELSE,WHILE,FOR,FUNCTION,RETURN,BREAK,CONTINUE,AND,NOT,OR,LOCAL,TRUE,FALSE,NIL,
PLUS,MINUS,ASSIGN,STAR,SLASH,MODULE,EQUAL,NOTEQUAL,INCREMENT,DECREMENT,LOWER,GREATER,LOWEREQUAL,GREATEREQUAL,SQUAREBEGIN,SQUAREEND,BLOCKBEGIN,BLOCKEND,PARBEGIN,PAREND,COLON,COMMA,SEMICOLON,DOUBLECOLON,DOT,DOUBLEDOT,WHITESPACE
} category;

const char *enumNames[] = {"KEYWORD","OPERATOR","INTCONST","REALCONST","STRCONST","MARK","ID","COMMENT",
"IF","ELSE","WHILE","FOR","FUNCTION","RETURN","BREAK","CONTINUE",
"AND","NOT","OR","LOCAL","TRUE","FALSE","NIL","PLUS","MINUS",
"ASSIGN","STAR","SLASH","MODULE","EQUAL","NOTEQUAL","INCREMENT",
"DECREMENT","LOWER","GREATER","LOWEREQUAL","GREATEREQUAL",
"SQUAREBEGIN","SQUAREEND","BLOCKBEGIN","BLOCKEND","PARBEGIN",
"PAREND","COLON","COMMA","SEMICOLON","DOUBLECOLON","DOT","DOUBLEDOT","WHITESPACE"};


class Token
{
public:
int line_num;
int token_num;
string content;
category cat;
category attr;

void init(int line,int token,category type,string cont,category attribute)
{
line_num=line;
token_num=token;
content = cont;
cat=type;
attr=attribute;
}

};




#line 682 "lex.yy.c"

#define INITIAL 0
#define COMMENT1 1
#define COMMENT2 2
#define STRING 3

#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif

#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif

static int yy_init_globals (void );

/* Accessor methods to globals.
  These are made visible to non-reentrant scanners for convenience. */

int yylex_destroy (void );

int yyget_debug (void );

void yyset_debug (int debug_flag  );

YY_EXTRA_TYPE yyget_extra (void );

void yyset_extra (YY_EXTRA_TYPE user_defined  );

FILE *yyget_in (void );

void yyset_in  (FILE * in_str  );

FILE *yyget_out (void );

void yyset_out  (FILE * out_str  );

int yyget_leng (void );

char *yyget_text (void );

int yyget_lineno (void );

void yyset_lineno (int line_number  );

/* Macros after this point can all be overridden by user definitions in
* section 1.
*/

#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap (void );
#else
extern int yywrap (void );
#endif
#endif

   static void yyunput (int c,char *buf_ptr  );
   
#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int );
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * );
#endif

#ifndef YY_NO_INPUT

#ifdef __cplusplus
static int yyinput (void );
#else
static int input (void );
#endif

#endif

/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif

/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO fwrite( yytext, yyleng, 1, yyout )
#endif

/* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size)
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive )
{
int c = '*';
int n;
for ( n = 0; n < max_size &&
    (c = getc( yyin )) != EOF && c != 'n'; ++n )
buf[n] = (char) c;
if ( c == 'n' )
buf[n++] = (char) c;
if ( c == EOF && ferror( yyin ) )
YY_FATAL_ERROR( "input in flex scanner failed" );
result = n;
}
else
{
errno=0;
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin))
{
if( errno != EINTR)
{
YY_FATAL_ERROR( "input in flex scanner failed" );
break;
}
errno=0;
clearerr(yyin);
}
}


#endif

/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif

/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif

/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif

/* end tables serialization structures and prototypes */

/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1

extern int yylex (void);

#define YY_DECL int yylex (void)
#endif /* !YY_DECL */

/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif

/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif

#define YY_RULE_SETUP
YY_USER_ACTION

/** The main scanner function which does all the work.
*/
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
   
#line 68 "alpha.l"

#line 869 "lex.yy.c"

if ( !(yy_init) )
{
(yy_init) = 1;

#ifdef YY_USER_INIT
YY_USER_INIT;
#endif

       /* Create the reject buffer large enough to save one state per allowed character. */
       if ( ! (yy_state_buf) )
           (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE  );
           if ( ! (yy_state_buf) )
               YY_FATAL_ERROR( "out of dynamic memory in yylex()" );

if ( ! (yy_start) )
(yy_start) = 1; /* first start state */

if ( ! yyin )
yyin = stdin;

if ( ! yyout )
yyout = stdout;

if ( ! YY_CURRENT_BUFFER ) {
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE );
}

yy_load_buffer_state( );
}

while ( 1 ) /* loops until end-of-file is reached */
{
yy_cp = (yy_c_buf_p);

/* Support of yytext. */
*yy_cp = (yy_hold_char);

/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;

yy_current_state = (yy_start);

(yy_state_ptr) = (yy_state_buf);
*(yy_state_ptr)++ = yy_current_state;

yy_match:
do
{
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 139 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
*(yy_state_ptr)++ = yy_current_state;
++yy_cp;
}
while ( yy_base[yy_current_state] != 220 );

yy_find_action:
yy_current_state = *--(yy_state_ptr);
(yy_lp) = yy_accept[yy_current_state];
find_rule: /* we branch to this label when backing up */
for ( ; ; ) /* until we find what rule we matched */
{
if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] )
{
yy_act = yy_acclist[(yy_lp)];
{
(yy_full_match) = yy_cp;
break;
}
}
--yy_cp;
yy_current_state = *--(yy_state_ptr);
(yy_lp) = yy_accept[yy_current_state];
}

YY_DO_BEFORE_ACTION;

if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] )
{
int yyl;
for ( yyl = (yy_prev_more_offset); yyl < yyleng; ++yyl )
if ( yytext[yyl] == 'n' )
 
   yylineno++;
;
}

do_action: /* This label is used only to access EOF actions. */

switch ( yy_act )
{ /* beginning of action switch */
case 1:
YY_RULE_SETUP
#line 69 "alpha.l"
BEGIN(COMMENT2);
YY_BREAK
case 2:
YY_RULE_SETUP
#line 70 "alpha.l"
{BEGIN(INITIAL);cerr << "Recognised c-style Line comment" << endl;}
YY_BREAK
case 3:
YY_RULE_SETUP
#line 72 "alpha.l"
BEGIN(COMMENT1); cerr <<  "Recognised c-style comment" << endl; comms=1;
YY_BREAK
case 4:
/* rule 4 can match eol */
YY_RULE_SETUP
#line 74 "alpha.l"

YY_BREAK
case 5:
/* rule 5 can match eol */
YY_RULE_SETUP
#line 75 "alpha.l"

YY_BREAK
case 6:
YY_RULE_SETUP
#line 76 "alpha.l"
{comms++; cerr << " nested commend" << endl;}
YY_BREAK
case 7:
/* rule 7 can match eol */
YY_RULE_SETUP
#line 77 "alpha.l"

YY_BREAK
case 8:
YY_RULE_SETUP
#line 78 "alpha.l"
{if(--comms==0) {BEGIN(INITIAL); cerr << "Finished ignoring c-style comment" << endl;}}
YY_BREAK
case YY_STATE_EOF(COMMENT1):
#line 79 "alpha.l"
return -10;
YY_BREAK
case 9:
YY_RULE_SETUP
#line 81 "alpha.l"
comm_str="";BEGIN(STRING);
YY_BREAK
case 10:
/* rule 10 can match eol */
YY_RULE_SETUP
#line 82 "alpha.l"
{comm_str+=yytext;}
YY_BREAK
case 11:
YY_RULE_SETUP
#line 83 "alpha.l"
{comm_str+='n';}
YY_BREAK
case 12:
YY_RULE_SETUP
#line 84 "alpha.l"
{comm_str+='t';}
YY_BREAK
case 13:
YY_RULE_SETUP
#line 85 "alpha.l"
{comm_str+='"';}
YY_BREAK
case 14:
YY_RULE_SETUP
#line 86 "alpha.l"
{comm_str+='';}
YY_BREAK
case YY_STATE_EOF(STRING):
#line 87 "alpha.l"
{cerr << "line: " << yylineno <<" error: EOF in string quotes" << endl;return -9;}
YY_BREAK
case 15:
YY_RULE_SETUP
#line 88 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_string,comm_str,_string); BEGIN(INITIAL);return _string;}
YY_BREAK
case 16:
YY_RULE_SETUP
#line 92 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"if",IF);return IF;}
YY_BREAK
case 17:
YY_RULE_SETUP
#line 93 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"else",ELSE);return ELSE;}
YY_BREAK
case 18:
YY_RULE_SETUP
#line 94 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"while",WHILE);return WHILE;}
YY_BREAK
case 19:
YY_RULE_SETUP
#line 95 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"for",FOR);return FOR;}
YY_BREAK
case 20:
YY_RULE_SETUP
#line 96 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"function",FUNCTION);return FUNCTION;}
YY_BREAK
case 21:
YY_RULE_SETUP
#line 97 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"return",RETURN);return RETURN;}
YY_BREAK
case 22:
YY_RULE_SETUP
#line 98 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"break",BREAK);return BREAK;}
YY_BREAK
case 23:
YY_RULE_SETUP
#line 99 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"continue",CONTINUE);return CONTINUE;}
YY_BREAK
case 24:
YY_RULE_SETUP
#line 100 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"and",AND);return AND;}
YY_BREAK
case 25:
YY_RULE_SETUP
#line 101 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"not",NOT);return NOT;}
YY_BREAK
case 26:
YY_RULE_SETUP
#line 102 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"or",OR);return OR;}
YY_BREAK
case 27:
YY_RULE_SETUP
#line 103 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"local",LOCAL);return LOCAL;}
YY_BREAK
case 28:
YY_RULE_SETUP
#line 104 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"true",TRUE);return TRUE;}
YY_BREAK
case 29:
YY_RULE_SETUP
#line 105 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"false",FALSE);return FALSE;}
YY_BREAK
case 30:
YY_RULE_SETUP
#line 106 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_key,"nil",NIL);return NIL;}
YY_BREAK
case 31:
YY_RULE_SETUP
#line 109 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"+",PLUS);return PLUS;}
YY_BREAK
case 32:
YY_RULE_SETUP
#line 110 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"-",MINUS);return MINUS;}
YY_BREAK
case 33:
YY_RULE_SETUP
#line 111 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"=",ASSIGN);return ASSIGN;}
YY_BREAK
case 34:
YY_RULE_SETUP
#line 112 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"*",STAR);return STAR;}
YY_BREAK
case 35:
YY_RULE_SETUP
#line 113 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"//",SLASH);return SLASH;}
YY_BREAK
case 36:
YY_RULE_SETUP
#line 114 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"/%",MODULE);return MODULE;}
YY_BREAK
case 37:
YY_RULE_SETUP
#line 115 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"==",EQUAL);return EQUAL;}
YY_BREAK
case 38:
YY_RULE_SETUP
#line 116 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"!=",NOTEQUAL);return NOTEQUAL;}
YY_BREAK
case 39:
YY_RULE_SETUP
#line 117 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"++",INCREMENT);return INCREMENT;}
YY_BREAK
case 40:
YY_RULE_SETUP
#line 118 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"--",DECREMENT);return DECREMENT;}
YY_BREAK
case 41:
YY_RULE_SETUP
#line 119 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"<",LOWER);return LOWER;}
YY_BREAK
case 42:
YY_RULE_SETUP
#line 120 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,">",GREATER);return GREATER;}
YY_BREAK
case 43:
YY_RULE_SETUP
#line 121 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"<=",LOWEREQUAL);return LOWEREQUAL;}
YY_BREAK
case 44:
YY_RULE_SETUP
#line 122 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,">=",GREATEREQUAL);return GREATEREQUAL;}
YY_BREAK
case 45:
YY_RULE_SETUP
#line 124 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"[",SQUAREBEGIN);return SQUAREBEGIN;}
YY_BREAK
case 46:
YY_RULE_SETUP
#line 125 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"]",SQUAREEND);return SQUAREEND;}
YY_BREAK
case 47:
YY_RULE_SETUP
#line 126 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"{",BLOCKBEGIN);return BLOCKBEGIN;}
YY_BREAK
case 48:
YY_RULE_SETUP
#line 127 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"}",BLOCKEND);return BLOCKEND;}
YY_BREAK
case 49:
YY_RULE_SETUP
#line 128 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"(",PARBEGIN);return PARBEGIN;}
YY_BREAK
case 50:
YY_RULE_SETUP
#line 129 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,")",PAREND);return PAREND;}
YY_BREAK
case 51:
YY_RULE_SETUP
#line 130 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,":",COLON);return COLON;}
YY_BREAK
case 52:
YY_RULE_SETUP
#line 131 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,",",COMMA);return COMMA;}
YY_BREAK
case 53:
YY_RULE_SETUP
#line 132 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,";",SEMICOLON);return SEMICOLON;}
YY_BREAK
case 54:
YY_RULE_SETUP
#line 133 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"::",DOUBLECOLON);return DOUBLECOLON;}
YY_BREAK
case 55:
YY_RULE_SETUP
#line 134 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,".",DOT);return DOT;}
YY_BREAK
case 56:
YY_RULE_SETUP
#line 135 "alpha.l"
{ yylval->init(yylineno,++tokenNumber,_mark,"..",DOUBLEDOT);return DOUBLEDOT;}
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(COMMENT2):
#line 137 "alpha.l"
{ return -1;}
YY_BREAK
case 57:
YY_RULE_SETUP
#line 139 "alpha.l"
{ comm_str="" ; yylval->init(yylineno,++tokenNumber,_id,(comm_str+=yytext),_id);return _id;}
YY_BREAK
case 58:
YY_RULE_SETUP
#line 141 "alpha.l"
{ comm_str="" ;yylval->init(yylineno,++tokenNumber,_int,(comm_str+=yytext),_int);return _int;}
YY_BREAK
case 59:
YY_RULE_SETUP
#line 143 "alpha.l"
{ comm_str="" ;yylval->init(yylineno,++tokenNumber,_real,(comm_str+=yytext),_real);return _real;}
YY_BREAK
case 60:
YY_RULE_SETUP
#line 145 "alpha.l"
{}
YY_BREAK
case 61:
/* rule 61 can match eol */
YY_RULE_SETUP
#line 147 "alpha.l"
{}
YY_BREAK
case 62:
YY_RULE_SETUP
#line 149 "alpha.l"
{ cerr << "Error Unrecognized Token :"<< yytext << " at line:" << yylineno << endl;return -2; }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 151 "alpha.l"
ECHO;
YY_BREAK
#line 1304 "lex.yy.c"

case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;

/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET

if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source.  It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* yylex().  If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals.  Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}

/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state).  Contrast this with the test
* in input().
*/
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;

(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;

yy_current_state = yy_get_previous_state(  );

/* Okay, we're now positioned to make the NUL
* transition.  We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/

yy_next_state = yy_try_NUL_trans( yy_current_state );

yy_bp = (yytext_ptr) + YY_MORE_ADJ;

if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++(yy_c_buf_p);
yy_current_state = yy_next_state;
goto yy_match;
}

else
{
yy_cp = (yy_c_buf_p);
goto yy_find_action;
}
}

else switch ( yy_get_next_buffer(  ) )
{
case EOB_ACT_END_OF_FILE:
{
(yy_did_buffer_switch_on_eof) = 0;

if ( yywrap( ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;

yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}

else
{
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
}
break;
}

case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) =
(yytext_ptr) + yy_amount_of_matched_text;

yy_current_state = yy_get_previous_state(  );

yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_match;

case EOB_ACT_LAST_MATCH:
(yy_c_buf_p) =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];

yy_current_state = yy_get_previous_state(  );

yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}

default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of yylex */

/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (void)
{
    register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
register char *source = (yytext_ptr);
register int number_to_move, i;
int ret_val;

if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );

if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}

else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}

/* Try to read more data. */

/* First move last chars to start of buffer. */
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;

for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);

if ( YY_C
:think:
 

Επισκέπτης
Τσόλια Πσόλια μου γάμησες το θρεντ......αν δε σ'αρέσει τράβα αλλού.......σεβάσου τουλάχιστον τον κόπο που έκανε ο άλλος..... :jerking:
 

sinnerman

Ενεργό Μέλος
Εγγρ.
1 Νοε 2006
Μηνύματα
15.502
Like
19
Πόντοι
166
Ζητα του να το σβησει...
 

Επισκέπτης
Μακάρι να το κάνει από μόνος του....αλλά δε το βλέπω...άει σιχτήρ με το κάθε καμμένο παιδάκι εδώ μέσα,που την έχει δει πληροφορικάριος πανεπιστημίου....
 

marianna2004

Μέλος
Εγγρ.
19 Απρ 2007
Μηνύματα
3.442
Κριτικές
3
Like
1
Πόντοι
16

Tsolias.Psolias

Ενεργό Μέλος
Εγγρ.
8 Ιουλ 2007
Μηνύματα
15.106
Like
28
Πόντοι
166
Τσόλια Πσόλια μου γάμησες το θρεντ......αν δε σ'αρέσει τράβα αλλού.......σεβάσου τουλάχιστον τον κόπο που έκανε ο άλλος..... :jerking:
βρες να κάνεις κάτι ποιο εποικοδομητικό γιατί όλα αυτά που παλεύεις να βγάλεις εσύ σε 10 ώρες, σου τα βγάζει ο Αντισθένης σε μισή ώρα με συνεχή ανανέωση όσο αυξάνει ό κάθε ένας το ποστ του.
όπως έχει κάνει με τον αριθμό των ποστ και το πλήθος των μελών
Σάββατο, 02 Απριλίου 2011
Μέλη: 104520
Online: 2622 επισκέπτες και 424 μέλη
Κατάλογος: 5157 καταχωρήσεις & 22056 κριτικές


όπως έχει και αυτό το φόρουμ, , δεξιά που λέει για στατιστικά του σάιτ με τον τοπ πόστερ και τόσα άλλα σάιτ που βαριέμαι να σου γράψω. απ' ότι κατάλαβα από προηγούμενο ποστ σου πρέπει να το έχεις κάνει αυτό και σε άλλο φόρουμ.... όσοι σκαμπάζουν 2 πράγματα από προγραμματισμό γελάνε μαζί σου.
σταμάτα να χάνεις την ώρα σου και κόψε την κλάψα
make-people-cry-800X800.jpg

http://[URL unfurl="true"]www.teezy.eu/img/design_products/thumb_design_product-5298-1926-1757.png[/img[/URL]]

Υ.Γ. και ένα δωράκι: ήτανε 2 άτομα, ένα παιδί δημοτικού και ένα προγραμματιστής και τους δώσανε 20 αριθμούς για να τους προσθέσουν. Παίρνει το παιδάκι τον κάθε αριθμό, τον προσθέτει με τον επόμενο και σε 5 λεπτά έχει το αποτέλεσμα. Ο προγραμματιστής παίρνει το πρόβλημα, το κοιτάει, χωρίζει γνωστούς από αγνώστους, σχεδιάζει το γράφο εξαρτήσεων :2funny: (λέμε τώρα), σχεδιάζει κάποια αρχιτεκτονική την οποία θα ακολουθήσει, και αρχίζει να το υλοποιεί. Περνάει μια μέρα, περνάνε 2 μέρες, περνάει μια βδομάδα και τελικά δίνει μια ενα μοντέλο το οποίο προσθέτει τους αριθμούς στο λιγότερο δυνατό χρόνο. Αυτή είναι η δουλειά του προγραμματιστή, 50 περίπου χρόνια εξελίξεων και καινοτομιών για να μπορείς εσύ και ο κάθε ένας να έχει αυτό που ζητάει στο μικρότερο δυνατό χρόνο.

αυτά από εμένα περί του θέματος, άμα γουστάρει, αύριο το πρωί ο αντισθένης μπορεί να σου ποστάρει και τα 100.000+ νικ μαζί με τον αριθμό των ποστ τους, μαζί με τους μέσους όρους, τυπικές αποκλείσεις, διασπορές, ποιος είναι κλώνος ποιου, που μένει ο κάθε ένας, τι λειτουργικό έχει, ποιον browser xρησιμοποιεί και ποια κατηγορία στο σεξοθρεντ γουστάρει να διαβάζει.
αυτά.
 

Επισκέπτης
Ρε γαμημένε καριόλη,που θα βγεις και από πάνω...δεν είμαι τόσο πανηλίθιος για να μην ξέρω ότι σε άλλα φόρα υπάρχει λίστα μελών,όπου φαίνονται ο αριθμός ποστ του κάθε χρήστηη,και σε ποια θέση είναι.....το έκανα γιατί εδώ μέσα δεν υπάρχει λίστα μελών.....αν εσύ την έχεις βρει,πες το και σε μας.......


Μάθε πρώτα τι παίζει και μετά μίλα ρε χαλβαδέμπορα
 

pz89

Ενεργό Μέλος
Εγγρ.
24 Δεκ 2010
Μηνύματα
33.207
Κριτικές
14
Like
22
Πόντοι
376
Ρε γαμημένε καριόλη,που θα βγεις και από πάνω...δεν είμαι τόσο πανηλίθιος για να μην ξέρω ότι σε άλλα φόρα υπάρχει λίστα μελών,όπου φαίνονται ο αριθμός ποστ του κάθε χρήστηη,και σε ποια θέση είναι.....το έκανα γιατί εδώ μέσα δεν υπάρχει λίστα μελών.....αν εσύ την έχεις βρει,πες το και σε μας.......


Μάθε πρώτα τι παίζει και μετά μίλα ρε χαλβαδέμπορα
Ένιωσες την ανάγκη να καλύψεις αυτό το κενό εεε;;; :cheesy:
 

pz89

Ενεργό Μέλος
Εγγρ.
24 Δεκ 2010
Μηνύματα
33.207
Κριτικές
14
Like
22
Πόντοι
376
Άμα ο ΤΠ βλέπει τη λίστα μελών,και γω δε τη βλέπω,να μου τη δείξει
Δηλαδή λείπει,ναι.

Και είπες να διορθώσεις αυτή την έλλειψη εεε;;; :cheesy:

Mαλάκα σύνελθε,προσπαθείς να μην στην λέει κανένας στο ίντερνετ,έλεος!!! :headbang:
 

Stories

Νέο!

Stories

Top Bottom