home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d156 / flex.lha / Flex / Flex2 / parse.h < prev    next >
C/C++ Source or Header  |  1988-10-02  |  504b  |  33 lines

  1.  
  2. #ifndef YYLTYPE
  3. typedef
  4.   struct yyltype
  5.     {
  6.       int timestamp;
  7.       int first_line;
  8.       int first_column;
  9.       int last_line;
  10.       int last_column;
  11.       char *text;
  12.    }
  13.   yyltype;
  14.  
  15. #define YYLTYPE yyltype
  16. #endif
  17.  
  18. #define    YYACCEPT    return(0)
  19. #define    YYABORT    return(1)
  20. #define    YYERROR    return(1)
  21. #ifndef YYSTYPE
  22. #define YYSTYPE int
  23. #endif
  24. #define    CHAR    258
  25. #define    NUMBER    259
  26. #define    SECTEND    260
  27. #define    SCDECL    261
  28. #define    XSCDECL    262
  29. #define    WHITESPACE    263
  30. #define    NAME    264
  31. #define    PREVCCL    265
  32.  
  33.