/*
 *	eqn: paren.h
 *	defines for the different types of constructed bracket
 *	Martin Guy, UKC, july 1985
 */

#define B_LCURLY	0
#define B_RCURLY	1
#define B_LFLOOR	2
#define B_RFLOOR	3
#define B_LCEILING	4
#define B_RCEILING	5
#define B_LSQUARE	6
#define B_RSQUARE	7
#define B_LROUND	8
#define B_RROUND	9
#define B_BAR		10
#define B_INTEGRAL	11	/* constructed integral sign for Sanders */

#define B_NTYPES	12	/* Number of types of bracket */
