home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V6 / usr / source / sno / sno.h < prev    next >
Encoding:
C/C++ Source or Header  |  1975-05-13  |  338 b   |  22 lines

  1. struct    node {
  2.     struct node *p1;
  3.     struct node *p2;
  4.     char typ;
  5.     char ch;
  6. };
  7.  
  8. int    freesize;
  9. struct    node *lookf;
  10. struct    node *looks;
  11. struct    node *lookend;
  12. struct    node *lookstart;
  13. struct    node *lookdef;
  14. struct    node *lookret;
  15. struct    node *lookfret;
  16. int    cfail;
  17. int    rfail;
  18. struct    node *freelist;
  19. struct    node *namelist;
  20. int    lc;
  21. struct    node *schar;
  22.