xref: /csrg-svn/usr.bin/struct/beautify/b.h (revision 48120)
1*48120Sbostic /*-
2*48120Sbostic  * %sccs.include.proprietary.c%
3*48120Sbostic  *
4*48120Sbostic  *	@(#)b.h	5.1 (Berkeley) 04/16/91
5*48120Sbostic  */
614507Ssam 
710982Srrh extern int xxindent, xxval, newflag, xxmaxchars, xxbpertab;
810982Srrh extern int xxlineno;		/* # of lines already output */
910982Srrh #define xxtop	100		/* max size of xxstack */
1010982Srrh extern int xxstind, xxstack[xxtop], xxlablast, xxt;
1110982Srrh struct node
1210982Srrh 	{int op;
1310982Srrh 	char *lit;
1410982Srrh 	struct node *left;
1510982Srrh 	struct node *right;
1610982Srrh 	};
17