home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / new / dev / cross / caz / calc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-21  |  94 b   |  10 lines

  1. struct node
  2. {
  3.     int type,
  4.         value;
  5.     struct node *prev;
  6. };
  7.  
  8. #define VALUE 1
  9. #define SYMBOL 2
  10.