home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / struct / b.h < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  290 b   |  11 lines

  1. extern int xxindent, xxval, newflag, xxmaxchars, xxbpertab;
  2. extern int xxlineno;        /* # of lines already output */
  3. #define xxtop    100        /* max size of xxstack */
  4. extern int xxstind, xxstack[xxtop], xxlablast, xxt;
  5. struct node
  6.     {int op;
  7.     char *lit;
  8.     struct node *left;
  9.     struct node *right;
  10.     };
  11.