home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CPROTOS.ZIP / TR.H < prev    next >
Text File  |  1991-02-19  |  384b  |  24 lines

  1.  
  2.  
  3. typedef struct _tr {
  4.   char *pc;
  5.   int type;
  6.   struct _tr *list_next;
  7.   struct _tr *left;
  8.   struct _tr *right;
  9. } TRnode;
  10.  
  11. enum tr_idents {
  12.   IDENT,
  13.   NOP,
  14.   PTR,
  15.   LABEL,
  16.   STORAGE_CLASS,
  17.   TYPE,
  18.   OP
  19.   };
  20.  
  21. #define TOP 1
  22. #define BOTTOM 2
  23.  
  24.