1*70a3049eSPedro F. Giffuni /*- 29b50d902SRodney W. Grimes * Copyright (c) 1985 Sun Microsystems, Inc. 39b50d902SRodney W. Grimes * Copyright (c) 1980, 1993 49b50d902SRodney W. Grimes * The Regents of the University of California. All rights reserved. 59b50d902SRodney W. Grimes * All rights reserved. 69b50d902SRodney W. Grimes * 79b50d902SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 89b50d902SRodney W. Grimes * modification, are permitted provided that the following conditions 99b50d902SRodney W. Grimes * are met: 109b50d902SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 119b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 129b50d902SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 139b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 149b50d902SRodney W. Grimes * documentation and/or other materials provided with the distribution. 159b50d902SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 169b50d902SRodney W. Grimes * must display the following acknowledgement: 179b50d902SRodney W. Grimes * This product includes software developed by the University of 189b50d902SRodney W. Grimes * California, Berkeley and its contributors. 199b50d902SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 209b50d902SRodney W. Grimes * may be used to endorse or promote products derived from this software 219b50d902SRodney W. Grimes * without specific prior written permission. 229b50d902SRodney W. Grimes * 239b50d902SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 249b50d902SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 259b50d902SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 269b50d902SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 279b50d902SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 289b50d902SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 299b50d902SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 309b50d902SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 319b50d902SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 329b50d902SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 339b50d902SRodney W. Grimes * SUCH DAMAGE. 349b50d902SRodney W. Grimes * 359b50d902SRodney W. Grimes * @(#)indent_codes.h 8.1 (Berkeley) 6/6/93 369e50dd77SDavid E. O'Brien * $FreeBSD$ 379b50d902SRodney W. Grimes */ 389b50d902SRodney W. Grimes 399b50d902SRodney W. Grimes #define newline 1 409b50d902SRodney W. Grimes #define lparen 2 419b50d902SRodney W. Grimes #define rparen 3 429b50d902SRodney W. Grimes #define unary_op 4 439b50d902SRodney W. Grimes #define binary_op 5 449b50d902SRodney W. Grimes #define postop 6 459b50d902SRodney W. Grimes #define question 7 469b50d902SRodney W. Grimes #define casestmt 8 479b50d902SRodney W. Grimes #define colon 9 489b50d902SRodney W. Grimes #define semicolon 10 499b50d902SRodney W. Grimes #define lbrace 11 509b50d902SRodney W. Grimes #define rbrace 12 519b50d902SRodney W. Grimes #define ident 13 529b50d902SRodney W. Grimes #define comma 14 539b50d902SRodney W. Grimes #define comment 15 549b50d902SRodney W. Grimes #define swstmt 16 559b50d902SRodney W. Grimes #define preesc 17 569b50d902SRodney W. Grimes #define form_feed 18 579b50d902SRodney W. Grimes #define decl 19 589b50d902SRodney W. Grimes #define sp_paren 20 599b50d902SRodney W. Grimes #define sp_nparen 21 609b50d902SRodney W. Grimes #define ifstmt 22 619b50d902SRodney W. Grimes #define whilestmt 23 629b50d902SRodney W. Grimes #define forstmt 24 639b50d902SRodney W. Grimes #define stmt 25 649b50d902SRodney W. Grimes #define stmtl 26 659b50d902SRodney W. Grimes #define elselit 27 669b50d902SRodney W. Grimes #define dolit 28 679b50d902SRodney W. Grimes #define dohead 29 689b50d902SRodney W. Grimes #define ifhead 30 699b50d902SRodney W. Grimes #define elsehead 31 709b50d902SRodney W. Grimes #define period 32 71