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
|
/* luatex.h
Copyright 1996-2006 Han The Thanh <thanh@pdftex.org>
Copyright 2006-2008 Taco Hoekwater <taco@luatex.org>
This file is part of LuaTeX.
LuaTeX 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 2 of the License, or (at your
option) any later version.
LuaTeX 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 Lesser General Public
License for more details.
You should have received a copy of the GNU General Public License along
with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */
/* $Id$ */
#ifndef LUATEX_H
# define LUATEX_H
/* texmf.h: Main include file for TeX and Metafont in C. This file is
included by {tex,mf}d.h, which is the first include in the C files
output by web2c. */
# include "cpascal.h"
# include <kpathsea/c-pathch.h> /* for IS_DIR_SEP, used in the change files */
# include <kpathsea/tex-make.h> /* for kpse_make_tex_discard_errors */
/* If we have these macros, use them, as they provide a better guide to
the endianess when cross-compiling. */
# if defined (BYTE_ORDER) && defined (BIG_ENDIAN) && defined (LITTLE_ENDIAN)
# ifdef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
# endif
# if BYTE_ORDER == BIG_ENDIAN
# define WORDS_BIGENDIAN
# endif
# endif
/* More of the same, but now NeXT-specific. */
# ifdef NeXT
# ifdef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
# endif
# ifdef __BIG_ENDIAN__
# define WORDS_BIGENDIAN
# endif
# endif
/* Some things are the same except for the name. */
# define TEXMFPOOLNAME "luatex.pool"
# define TEXMFENGINENAME "luatex"
# define DUMP_FILE fmt_file
# define DUMP_FORMAT kpse_fmt_format
# define write_dvi WRITE_OUT
# define flush_dvi flush_out
# define OUT_FILE dvi_file
# define OUT_BUF dvi_buf
/* Restore underscores. */
# define kpsetexformat kpse_tex_format
# define t_open_in topenin
/* Executing shell commands. */
extern void mk_shellcmdlist(char *);
extern void init_shell_escape(void);
extern int shell_cmd_is_allowed(const char **cmd, char **safecmd,
char **cmdname);
extern int runsystem(char *cmd);
# ifndef GLUERATIO_TYPE
# define GLUERATIO_TYPE double
# endif
typedef GLUERATIO_TYPE glueratio;
# if defined(__DJGPP__) && defined (IPC)
# undef IPC
# endif
# ifdef IPC
extern void ipcpage(int);
# endif /* IPC */
/* How to output to the GF or DVI file. */
# define WRITE_OUT(a, b) \
if (fwrite ((char *) &OUT_BUF[a], sizeof (OUT_BUF[a]), \
(int) ((b) - (a) + 1), OUT_FILE) \
!= (int) ((b) - (a) + 1)) \
FATAL_PERROR ("fwrite");
# define flush_out() fflush (OUT_FILE)
/* Read a line of input as quickly as possible. */
# define input_ln(stream, flag) input_line (stream)
extern boolean input_line(FILE *);
# include <luatexdir/ptexlib.h>
# define COPYRIGHT_HOLDER "Taco Hoekwater"
# define AUTHOR NULL
# define PROGRAM_HELP LUATEXHELP
# define BUG_ADDRESS "dev-luatex@ntg.nl"
# define DUMP_OPTION "fmt"
# define DUMP_EXT ".fmt"
# define INPUT_FORMAT kpse_tex_format
# define INI_PROGRAM "luainitex"
# define VIR_PROGRAM "luavirtex"
# define TEXMFENGINENAME "luatex"
/* this counteracts the macro definition in cpascal.h */
# undef Xchr
# define Xchr(a) a
#endif
|