home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / utils / toolbox / lib / lalr / scanner.h < prev    next >
Encoding:
Text File  |  1993-03-12  |  480 b   |  22 lines

  1. $@ # ifndef yy$
  2. $@ # define yy$
  3.  
  4. /* $Id: Scanner.h,v 2.4 1992/08/07 15:28:42 grosch rel $ */
  5.  
  6. # if defined __STDC__ | defined __cplusplus
  7. # define ARGS(parameters)    parameters
  8. # else
  9. # define ARGS(parameters)    ()
  10. # endif
  11.  
  12. # include "Positions.h"
  13.  
  14. $@ typedef struct { tPosition Position; } $_tScanAttribute;
  15.  
  16. $@ extern    $_tScanAttribute    $_Attribute;
  17.  
  18. $@ extern    int        $_GetToken    ();
  19. $@ extern    void        $_ErrorAttribute    ARGS((short yyToken, $_tScanAttribute * yyRepairAttribute));
  20.  
  21. # endif
  22.