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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
|
/*
*
* This file is part of
* MakeIndex - A formatter and format independent index processor
*
* Copyright (C) 1998-2019 by the TeX Live project.
* Copyright (C) 1989 by Chen & Harrison International Systems, Inc.
* Copyright (C) 1988 by Olivetti Research Center
* Copyright (C) 1987 by Regents of the University of California
*
* Author:
* Pehong Chen
* Chen & Harrison International Systems, Inc.
* Palo Alto, California
* USA
*
* Contributors:
* Please refer to the CONTRIB file that comes with this release
* for a list of people who have contributed to this and/or previous
* release(s) of MakeIndex.
*
* All rights reserved by the copyright holders. See the copyright
* notice distributed with this software for a complete description of
* the conditions under which it is made available.
*
*/
#include <c-auto.h>
/***********************************************************************
INSTALLATION NOTES
<11-Nov-1989>
At compile-time (or here, if compile-time definition is not
available), set non-zero ONE OS_xxxx operating system flag, and if
more than one compiler is available, ONE compiler flag:
Operating Systems Compiler(s)
================= ===========
OS_ATARI
OS_BS2000 CCD_2000
OS_BSD
OS_MVSXA IBM_C370
OS_VMCMS IBM_C370
OS_PCDOS IBM_PC_MICROSOFT
OS_SYSV
OS_TOPS20 KCC_20 or PCC_20
OS_VAXVMS
OS_XENIX
================= ===========
If no OS_xxxx symbol is defined, OS_BSD is assumed.
Standard C prototypes are now required.
All function declarations in MakeIndex are contained at the end of
this file.
If the host system restricts external names to 6 characters, set
SHORTNAMES non-zero in the appropriate OS_xxxx section below.
Installing MakeIndex under BS2000 requires at least Version 8.5
supporting Multiple Public Volume Sets (MPVS). Define WORK in this
file to your CATID (default :w:) for temporary files (.ilg, .ind),
in case of no MPVS support define WORK to NIL.
*/
/**********************************************************************/
/*
* Establish needed operating symbols (defaulting to OS_BSD if none
* specified at compile time). If you add one, add it to the check
* list at the end of this section, too.
*/
#define SHORTNAMES 0
/**********************************************************************/
#ifndef USE_KPATHSEA
#define USE_KPATHSEA 1
#endif
#if USE_KPATHSEA
#ifndef DEBUG /* strange logic: makeindex uses DEBUG to force debugging */
#define NO_DEBUG 1 /* kpathsea uses NO_DEBUG to suppress it. */
#endif
#include <kpathsea/config.h>
#include <kpathsea/c-limits.h>
#include <kpathsea/c-memstr.h>
#include <kpathsea/magstep.h>
#include <kpathsea/proginit.h>
#include <kpathsea/progname.h>
#include <kpathsea/tex-glyph.h>
#include <kpathsea/expand.h>
#endif
#include <stdio.h>
#ifdef HAVE_CTYPE_H
#include <ctype.h>
#endif
#ifndef HAVE_STRCHR
#define strchr index /* convert STDC form to old K&R form */
#endif
#ifndef HAVE_STRRCHR
#define strrchr rindex /* convert STDC form to old K&R form */
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#else
#ifdef HAVE_STRINGS_H
#include <string.h>
#endif
#endif
#ifdef HAVE_TYPES_H
#include <types.h>
#endif
#if SHORTNAMES
/*
* Provide alternate external names which are unique in the first SIX
* characters as required for portability (and Standard C)
*/
#define check_all chk_all
#define check_idx chk_idx
#define check_mixsym chk_mix
#define compare_one cmp_one
#define compare_page cmp_page
#define compare_string cmp_string
#define delim_n dlm_n
#define delim_p dlm_p
#define delim_r dlm_r
#define delim_t dlm_t
#define encap_i ecp_i
#define encap_p ecp_p
#define encap_range ecp_range
#define encap_s ecp_s
#define group_skip grp_skip
#define group_type grp_type
#define idx_aclose idxaclose
#define idx_actual idxactual
#define idx_keyword idx_kwd
#define indent_length ind_length
#define indent_space ind_space
#define headings_flag hd_flag
#define heading_pre hd_pre
#define heading_suf hd_suf
#define symhead_pos sym_pos
#define symhead_neg sym_neg
#define numhead_pos num_pos
#define numhead_neg num_neg
#define process_idx prc_idx
#define process_precedence prc_pre
#define range_ptr rng_ptr
#define scan_alpha_lower scnalw
#define scan_alpha_upper scnaup
#define scan_arabic scnarabic
#define scan_arg1 scna1
#define scan_arg2 scna2
#define scan_char scnchr
#define scan_field scnfld
#define scan_idx scnidx
#define scan_key scnkey
#define scan_no scnno
#define scan_roman_lower scnrlw
#define scan_roman_upper scnrup
#define scan_spec scnspc
#define scan_string scnstr
#define scan_style scnsty
#define setpagelen spg_len
#define setpage_close spg_close
#define setpage_open spg_open
#define suffix_2p suf_2p
#define suffix_3p suf_3p
#define suffix_mp suf_mp
#endif /* SHORTNAMES */
#define EXIT exit
#undef TRUE
#define TRUE 1
#undef FALSE
#define FALSE 0
#undef NUL
#define NUL '\0'
#undef NIL
#define NIL ""
#define TAB '\t'
#define LFD '\n'
#define SPC ' '
#define LSQ '['
#define RSQ ']'
#define BSH '\\'
#ifdef DOSISH
#define ENV_SEPAR ';'
#define DIR_DELIM '/'
#define ALT_DIR_DELIM '\\'
#define IS_DIR_DELIM(c) ((c) == DIR_DELIM || (c) == ALT_DIR_DELIM)
#else /* not DOSISH */
#define ENV_SEPAR ':'
#define DIR_DELIM '/'
#define IS_DIR_DELIM(c) ((c) == DIR_DELIM)
#endif /* not DOSISH */
#ifndef SW_PREFIX /* can override at compile time */
#define SW_PREFIX '-'
#endif
#define EXT_DELIM '.'
#define ROMAN_SIGN '*'
#define EVEN "even"
#define ODD "odd"
#define ANY "any"
extern int mk_getc (FILE *str); /* line endings patch */
#define GET_CHAR mk_getc
#define TOASCII(i) (char)((i) + 48)
/* NB: The typecasts here are CRITICAL for correct sorting of entries
that use characters in the range 128..255! */
#define TOLOWER(C) (isupper((unsigned char)(C)) ? \
(unsigned char)tolower((unsigned char)(C)) : (unsigned char)(C))
#define TOUPPER(C) (isupper((unsigned char)(C)) ? \
(unsigned char)(C) : (unsigned char)toupper((unsigned char)(C)))
#if USE_KPATHSEA /* kpathsea defines STREQ */
#undef STREQ
#undef STRNEQ
#endif
#define STREQ(A, B) (strcmp(A, B) == 0)
#define STRNEQ(A, B) (strcmp(A, B) != 0)
#define MESSAGE(F) { \
if (verbose) \
fprintf(stderr, F); \
fprintf(ilg_fp, F); \
}
#define MESSAGE1(F, S) { \
if (verbose) \
fprintf(stderr, F, S); \
fprintf(ilg_fp, F, S); \
}
#if USE_KPATHSEA /* kpathsea defines a different FATAL */
#undef FATAL
#endif
#define FATAL(F) { \
fprintf(stderr, F); \
fprintf(stderr, USAGE, pgm_fn); \
EXIT(1); \
}
#if USE_KPATHSEA /* kpathsea defines a different FATAL1 */
#undef FATAL1
#endif
#define FATAL1(F, S) { \
fprintf(stderr, F, S); \
fprintf(stderr, USAGE, pgm_fn); \
EXIT(1); \
}
#if USE_KPATHSEA /* kpathsea defines a different FATAL2 */
#undef FATAL2
#endif
#define FATAL2(F, D1, D2) { \
fprintf(stderr, F, D1, D2); \
fprintf(stderr, USAGE, pgm_fn); \
EXIT(1); \
}
#define OPEN_IN(FP) fopen(FP, "rb")
#define OPEN_OUT(FP) fopen(FP, "wb")
#define CLOSE(FP) fclose(FP)
#define ISDIGIT(C) ('0' <= C && C <= '9')
#define ISSYMBOL(C) (('!' <= C && C <= '@') || \
('[' <= C && C <= '`') || \
('{' <= C && C <= '~'))
/*====================================================================
Many arrays in MakeIndex are dimensioned [xxx_MAX], where the xxx_MAX
values are defined below. The use of each of these is described in
comments. However, no run-time check is made to ensure that these are
consistent, or reasonable! Therefore, change them only with great
care.
If any array overflows, please report to tex-k@tug.org.
======================================================================*/
#define ARABIC_MAX 99 /* maximum digits in an Arabic page */
/* number field */
#define ARGUMENT_MAX 10240 /* maximum length of sort or actual key */
/* in index entry */
#define ARRAY_MAX 1024 /* maximum length of constant values in */
/* style file */
#define FIELD_MAX 3 /* maximum levels of index entries (item, */
/* subitem, subsubitem); cannot be */
/* increased beyond 3 without */
/* significant design changes (no field */
/* names are known beyond 3 levels) */
#ifdef LINE_MAX /* IBM RS/6000 AIX has this in <sys/limits.h> */
#undef LINE_MAX
#endif
#define LINE_MAX 72 /* maximum output line length (longer */
/* ones wrap if possible) */
#define NUMBER_MAX 99 /* maximum digits in a Roman or Arabic */
/* page number */
/* (MAX(ARABIC_MAX,ROMAN_MAX)) */
#define PAGEFIELD_MAX 10 /* maximum fields in a composite page */
/* number */
#define PAGETYPE_MAX 5 /* fixed at 5; see use in scanst.c */
#define ROMAN_MAX 99 /* maximum length of Roman page number */
/* field */
#define STRING_MAX 999 /* maximum length of host filename */
/*====================================================================*/
#if USE_KPATHSEA
#define VERSION "version 2.16 [TeX Live " TEX_LIVE_VERSION "] (kpathsea + Thai support)"
#else
#define VERSION "version 2.16 [19-Sep-2021] (with Thai support)"
#endif
#define PUT_VERSION { \
MESSAGE1("This is %s, ", pgm_fn); \
MESSAGE1("%s.\n", VERSION); \
need_version = FALSE; \
}
#ifdef HAVE_SETLOCALE
#define USAGE \
"Usage: %s [-ilqrcgLT] [-s sty] [-o ind] [-t log] [-p num] [idx0 idx1 ...]\n"
#else
#define USAGE \
"Usage: %s [-ilqrcg] [-s sty] [-o ind] [-t log] [-p num] [idx0 idx1 ...]\n"
#endif
#define STYLE_PATH "INDEXSTYLE" /* environment variable defining search */
/* path for style files */
#define INDEX_IDX ".idx"
#define INDEX_ILG ".ilg"
#define INDEX_IND ".ind"
#define INDEX_STY ".mst"
#define INDEX_LOG ".log"
#define EMPTY -9999
#define ROML 0
#define ROMU 1
#define ARAB 2
#define ALPL 3
#define ALPU 4
#undef DUPLICATE /* may already be defined for WIN32 */
#define DUPLICATE 9999
#define SYMBOL -1
#define ALPHA -2
#define GERMAN 0
typedef struct KFIELD
{
char *sf[FIELD_MAX]; /* sort key */
char *af[FIELD_MAX]; /* actual key */
int group; /* key group */
char lpg[NUMBER_MAX]; /* literal page */
int npg[PAGEFIELD_MAX]; /* page field array */
short count; /* page field count */
short type; /* page number type */
char *encap; /* encapsulator */
const char *fn; /* input filename */
int lc; /* line number */
} FIELD, *FIELD_PTR;
typedef struct KNODE
{
FIELD data;
struct KNODE *next;
} NODE, *NODE_PTR;
extern int letter_ordering;
extern int compress_blanks;
extern int init_page;
extern int merge_page;
extern int even_odd;
extern int verbose;
extern int german_sort;
extern int thai_sort;
extern int locale_sort;
extern char idx_keyword[ARRAY_MAX];
extern char idx_aopen;
extern char idx_aclose;
extern char idx_level;
extern char idx_ropen;
extern char idx_rclose;
extern char idx_quote;
extern char idx_actual;
extern char idx_encap;
extern char idx_escape;
extern char page_comp[ARRAY_MAX];
extern int page_offset[PAGETYPE_MAX];
extern char page_prec[ARRAY_MAX];
extern char preamble[ARRAY_MAX];
extern char postamble[ARRAY_MAX];
extern char setpage_open[ARRAY_MAX];
extern char setpage_close[ARRAY_MAX];
extern char group_skip[ARRAY_MAX];
extern int headings_flag;
extern char heading_pre[ARRAY_MAX];
extern char heading_suf[ARRAY_MAX];
extern char symhead_pos[ARRAY_MAX];
extern char symhead_neg[ARRAY_MAX];
extern char numhead_pos[ARRAY_MAX];
extern char numhead_neg[ARRAY_MAX];
extern int prelen;
extern int postlen;
extern int skiplen;
extern int headprelen;
extern int headsuflen;
extern int setpagelen;
extern char item_r[FIELD_MAX][ARRAY_MAX];
extern char item_u[FIELD_MAX][ARRAY_MAX];
extern char item_x[FIELD_MAX][ARRAY_MAX];
extern int ilen_r[FIELD_MAX];
extern int ilen_u[FIELD_MAX];
extern int ilen_x[FIELD_MAX];
extern char delim_p[FIELD_MAX][ARRAY_MAX];
extern char delim_n[ARRAY_MAX];
extern char delim_r[ARRAY_MAX];
extern char delim_t[ARRAY_MAX];
extern char suffix_2p[ARRAY_MAX];
extern char suffix_3p[ARRAY_MAX];
extern char suffix_mp[ARRAY_MAX];
extern char encap_p[ARRAY_MAX];
extern char encap_i[ARRAY_MAX];
extern char encap_s[ARRAY_MAX];
extern int linemax;
extern char indent_space[ARRAY_MAX];
extern int indent_length;
extern FILE *idx_fp;
extern FILE *sty_fp;
extern FILE *ind_fp;
extern FILE *ilg_fp;
extern const char *idx_fn;
extern const char *pgm_fn;
extern const char *ind_fn;
extern const char *ilg_fn;
#ifndef MKIND_C
extern char sty_fn[];
extern char ind[];
extern char ilg[];
extern char pageno[];
#ifdef DEBUG
extern long totmem;
#endif /* DEBUG */
#endif
extern FIELD_PTR *idx_key;
extern NODE_PTR head;
extern NODE_PTR tail;
extern int idx_dot;
extern int idx_tt;
extern int idx_gt;
extern int idx_et;
extern int idx_dc;
#define DOT "."
#define DOT_MAX 1000
#define CMP_MAX 1500
#define IDX_DOT(MAX) { \
idx_dot = TRUE; \
if (idx_dc++ == 0) { \
if (verbose) \
fprintf(stderr, DOT); \
fprintf(ilg_fp, DOT); \
} \
if (idx_dc == MAX) \
idx_dc = 0; \
}
#define ALL_DONE { \
if (fn_no > 0) { \
if (verbose) \
fprintf(stderr, \
"Overall %d files read (%d entries accepted, %d rejected).\n", \
fn_no+1, idx_gt, idx_et); \
fprintf(ilg_fp, \
"Overall %d files read (%d entries accepted, %d rejected).\n", \
fn_no+1, idx_gt, idx_et); \
} \
}
#define DONE(A, B, C, D) { \
if (verbose) \
fprintf(stderr, "done (%d %s, %d %s).\n", (A), B, C, D); \
fprintf(ilg_fp, "done (%d %s, %d %s).\n", (A), B, C, D); \
}
extern void gen_ind (void);
extern int group_type (const char *str);
extern void scan_idx (void);
extern void scan_sty (void);
extern void sort_idx (void);
extern int strtoint (char *str);
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#if __NeXT__
int access (const char *, int);
#else
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#endif
#ifndef R_OK
#define R_OK 4 /* only symbol from sys/file.h */
#endif
|