-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGLOBALS.H
117 lines (93 loc) · 3.33 KB
/
GLOBALS.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
;
; This is the module coded by Antti Karttunen and used by many programs.
; Following text applies to this module and to all other modules in this
; package unless otherwise noted:
;
; Copyright (C) 1991 Antti J. Karttunen
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 1, or (at your option)
; any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License (in file GPL.TXT) for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#define foo extern
foo TOB _DEFUN_; /* "defun" */
foo TOB _DOLLAR_; /* "$" */
foo TOB _DOT_; /* "." */
foo TOB _FUNCTION_; /* "function" */
foo TOB _LAMBDA_; /* "lambda" */
foo TOB _NLAMBDA_; /* "nlambda" */
foo TOB _PICK_; /* "pick" */
foo TOB _QUOTE_; /* "quote" */
foo TOB _T_; /* "t" */
foo TOB _UNBOUND_; /* "*unbound*" */
foo TOB _VLAMBDA_; /* "vlambda" */
foo TOB _TEST_; /* ":TEST" */
foo TOB _TEST_NOT_; /* ":TEST-NOT" */
foo TOB _AUX_; /* "&aux" */
foo TOB _OPT1_; /* "&opt" */
foo TOB _OPT2_; /* "&optional" */
foo TOB _REST_; /* "&rest" */
foo TOB _DEFUN_KEYWORDS_; /* (&aux &opt &optional &rest) */
foo TOB _LAMBDAFORMS_; /* List of (lambda nlambda vlambda) */
foo TOB _oblist; /* Object list */
foo TOB _obtable; /* Hash Table to oblist */
foo TOB _freelist; /* Free list */
foo TOB _free_strings_list; /* Free'ed strings are kept here */
foo ULI _clistsavecnt;
foo jmp_buf readerrbuf;
foo jmp_buf to_toplevel_buf;
foo jmp_buf sprint_errbuf;
foo PTR _lowlim;
foo PTR _uplim;
foo PTR _allocp;
foo ULI fp_lowerlim, fp_upperlim;
foo ULI code_lowerlim, code_upperlim;
foo BYTE _max_args;
foo UINT _underflowlim,_overflowlim;
foo UINT _framepointer;
foo TOB _IBASE_;
foo TOB _INTEGER_PRINTTYPES_;
foo TOB _READ_MACROS_;
foo TOB lists2sparecons;
foo BYTE **G_argv;
foo UINT G_argc;
foo UINT _OBTAB_SIZE_;
/* I hope that these are all initialized to zeros (& NILS/NULLS),
otherwise the results can be quite unexpectable!
*/
foo TOB last_of_freelist; /* =NIL; */
foo UINT freelist_warnings; /* =0; */
foo ULI _consalloc_cnt; /* =0; */
foo ULI _residueconscnt; /* =0; */
foo UINT interncount; /* 0; */
foo TOB _LINEBUF_; /* Read line buffer */
foo UINT _LINEBUFSIZE_;
foo TOB _STATICBUF_; /* For Lisp */
foo TOB _CHARFLAGS_;
foo TOB _IO_FLAGS_;
foo TOB _NEWSYMBVALUE_;
foo BYTE *abrev_char;
foo BYTE *debug_flag;
foo BYTE *dins_flag;
foo BYTE *dtpr_flag;
foo BYTE *esc_flag;
foo BYTE *ibmscand_flag;
foo BYTE *nil_flag;
foo BYTE *plist_flag;
foo BYTE *prefix_char;
foo BYTE *quote_char;
foo BYTE *quote_flag;
foo BYTE *sent_flag;
foo BYTE *speclist_flag;
foo BYTE *warning_flag;