mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
1 line
1.1 KiB
C++
1 line
1.1 KiB
C++
#
|
||
|
||
/*
|
||
|
||
|
||
|
||
Copyright (C) 1976
|
||
|
||
by the
|
||
|
||
Board of Trustees
|
||
|
||
of the
|
||
|
||
University of Illinois
|
||
|
||
|
||
|
||
All rights reserved
|
||
|
||
|
||
|
||
FILE NAME:
|
||
|
||
indntcode.h
|
||
|
||
|
||
|
||
PURPOSE:
|
||
|
||
This include file contains defines for codes used within indent. They
|
||
|
||
are here so that codes passed between and within routines can be
|
||
|
||
referenced symbolically.
|
||
|
||
|
||
|
||
GLOBALS:
|
||
|
||
No global variables, just a bunch of defines
|
||
|
||
|
||
|
||
FUNCTIONS:
|
||
|
||
None
|
||
|
||
*/
|
||
|
||
|
||
|
||
#define newline 1
|
||
|
||
#define lparen 2
|
||
|
||
#define rparen 3
|
||
|
||
#define unary_op 4
|
||
|
||
#define binary_op 5
|
||
|
||
#define postop 6
|
||
|
||
#define question 7
|
||
|
||
#define casestmt 8
|
||
|
||
#define colon 9
|
||
|
||
#define semicolon 10
|
||
|
||
#define lbrace 11
|
||
|
||
#define rbrace 12
|
||
|
||
#define ident 13
|
||
|
||
#define comma 14
|
||
|
||
#define comment 15
|
||
|
||
#define swstmt 16
|
||
|
||
#define preesc 17
|
||
|
||
#define form_feed 18
|
||
|
||
#define decl 19
|
||
|
||
#define sp_paren 20
|
||
|
||
#define sp_nparen 21
|
||
|
||
#define ifstmt 22
|
||
|
||
#define whilestmt 23
|
||
|
||
#define forstmt 24
|
||
|
||
#define stmt 25
|
||
|
||
#define stmtl 26
|
||
|
||
#define elselit 27
|
||
|
||
#define dolit 28
|
||
|
||
#define dohead 29
|
||
|
||
#define ifhead 30
|
||
|
||
#define elsehead 31
|
||
|
||
#define period 32
|
||
|
||
e
|
||
|
||
file Doesn't know how to format "long" declarations.
|
||
|
||
|
||
|
||
|