home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / source / rayce27s / parse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-02  |  270 b   |  14 lines

  1. /* some defs for declaring stuff */
  2.  
  3. struct declare_tab {
  4.     char           *name;
  5.     void           *data;
  6.     int             type;
  7.     struct declare_tab *next;
  8. };
  9.  
  10.  
  11. PUBLIC void     print_dectab(void);
  12. PUBLIC int      yylex(void);
  13. PUBLIC void     yyerror(char *s);
  14.