121974Sdist /*
2*35500Sbostic  * Copyright (c) 1985 Sun Microsystems, Inc.
3*35500Sbostic  * Copyright (c) 1980 The Regents of the University of California.
433767Sbostic  * Copyright (c) 1976 Board of Trustees of the University of Illinois.
533767Sbostic  * All rights reserved.
621974Sdist  *
733767Sbostic  * Redistribution and use in source and binary forms are permitted
834885Sbostic  * provided that the above copyright notice and this paragraph are
934885Sbostic  * duplicated in all such forms and that any documentation,
1034885Sbostic  * advertising materials, and other materials related to such
1134885Sbostic  * distribution and use acknowledge that the software was developed
12*35500Sbostic  * by the University of California, Berkeley, the University of Illinois,
13*35500Sbostic  * Urbana, and Sun Microsystems, Inc.  The name of either University
14*35500Sbostic  * or Sun Microsystems may not be used to endorse or promote products
15*35500Sbostic  * derived from this software without specific prior written permission.
1634885Sbostic  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
1734885Sbostic  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
1834885Sbostic  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1933767Sbostic  *
20*35500Sbostic  *	@(#)indent_codes.h	5.6 (Berkeley) 09/15/88
2121974Sdist  */
228801Smckusick 
238801Smckusick #define newline		1
248801Smckusick #define lparen		2
258801Smckusick #define rparen		3
268801Smckusick #define unary_op	4
278801Smckusick #define binary_op	5
288801Smckusick #define postop		6
298801Smckusick #define question	7
308801Smckusick #define casestmt	8
318801Smckusick #define colon		9
328801Smckusick #define semicolon	10
338801Smckusick #define lbrace		11
348801Smckusick #define rbrace		12
358801Smckusick #define ident		13
368801Smckusick #define comma		14
378801Smckusick #define comment		15
388801Smckusick #define swstmt		16
398801Smckusick #define preesc		17
408801Smckusick #define form_feed	18
418801Smckusick #define decl		19
428801Smckusick #define sp_paren	20
438801Smckusick #define sp_nparen	21
448801Smckusick #define ifstmt		22
458801Smckusick #define whilestmt	23
468801Smckusick #define forstmt		24
478801Smckusick #define stmt		25
488801Smckusick #define stmtl		26
498801Smckusick #define elselit		27
508801Smckusick #define dolit		28
518801Smckusick #define dohead		29
528801Smckusick #define ifhead		30
538801Smckusick #define elsehead	31
548801Smckusick #define period		32
55