OSDN Git Service

49dee9ed942f90a4f90582fc4035b6d195c4eae6
[putex/putex.git] / src / texsourc / texmf.h
1 /* Main include file for TeX in C.  Originally by Tim Morgan,
2    December 23, 1987.  These routines are also used by Metafont (with
3    some name changes).
4
5    Copyright 1992 Karl Berry
6    Copyright 2007 TeX Users Group
7    Copyright 2014 Clerk Ma
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful, but
15    WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17    General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22    02110-1301 USA.  */
23
24 #include "yandytex.h"
25
26 enum {
27   out_dvi_flag = (1 << 0),
28   out_pdf_flag = (1 << 1),
29   out_xdv_flag = (1 << 2),
30 };
31
32 #define INLINE inline
33
34 #define dump_file  fmt_file
35 #define out_file   dvi_file
36
37 /* Read a line of input as quickly as possible.  */
38 extern boolean input_line (FILE *);
39 #define input_ln(stream, flag) input_line(stream)
40
41 /* `b_open_in' (and out) is used only for reading (and writing) .tfm
42    files; `w_open_in' (and out) only for dump files.  The filenames are
43    passed in as a global variable, `name_of_file'.  */
44    
45 #define b_open_in(f)  open_input  (&(f), TFMFILEPATH, FOPEN_RBIN_MODE)
46 #define w_open_in(f)  open_input  (&(f), TEXFORMATPATH, FOPEN_RBIN_MODE)
47 #define b_open_out(f) open_output (&(f), FOPEN_WBIN_MODE)
48 #define w_open_out    b_open_out
49 #define b_close       a_close
50 #define w_close       a_close
51 #define gz_w_close    gzclose
52
53 /* sec 0241 */
54 #define fix_date_and_time() get_date_and_time (&(tex_time), &(day), &(month), &(year))
55
56 /* If we're running under Unix, use system calls instead of standard I/O
57    to read and write the output files; also, be able to make a core dump. */ 
58 #ifndef unix
59   #define dumpcore() exit(1)
60 #else /* unix */
61   #define dumpcore abort
62 #endif
63
64 #define write_dvi(a, b)                                           \
65   if ((size_t) fwrite ((char *) &dvi_buf[a], sizeof (dvi_buf[a]), \
66          (size_t) ((size_t)(b) - (size_t)(a) + 1), dvi_file)      \
67          != (size_t) ((size_t)(b) - (size_t)(a) + 1))             \
68      FATAL_PERROR ("\n! dvi file")
69
70 extern int do_dump (char *, int, int, FILE *);
71 extern int do_undump (char *, int, int, FILE *);
72
73 /* Reading and writing the dump files.  `(un)dumpthings' is called from
74    the change file.*/
75 #define dumpthings(base, len)           \
76   do_dump ((char *) &(base), sizeof (base), (int) (len), dump_file)
77
78 #define undumpthings(base, len)           \
79   do_undump ((char *) &(base), sizeof (base), (int) (len), dump_file)
80
81 /* Use the above for all the other dumping and undumping.  */
82 #define generic_dump(x)   dumpthings (x, 1)
83 #define generic_undump(x) undumpthings (x, 1)
84
85 #define dump_wd     generic_dump
86 #define undump_wd   generic_undump
87 #define dump_hh     generic_dump
88 #define undump_hh   generic_undump
89 #define dump_qqqq   generic_dump
90 #define undump_qqqq generic_undump
91
92 /* `dump_int' is called with constant integers, so we put them into a
93    variable first.  */
94 #define dump_int(x)         \
95   do                        \
96     {                       \
97       integer x_val = (x);  \
98       generic_dump (x_val); \
99     }                       \
100   while (0)
101
102 /* web2c/regfix puts variables in the format file loading into
103    registers.  Some compilers aren't willing to take addresses of such
104    variables.  So we must kludge.  */
105 #ifdef REGFIX
106 #define undump_int(x)         \
107   do                          \
108     {                         \
109       integer x_val;          \
110       generic_undump (x_val); \
111       x = x_val;              \
112     }                         \
113   while (0)
114 #else
115 #define undump_int  generic_undump
116 #endif
117
118
119 /* If we're running on an ASCII system, there is no need to use the
120    `xchr' array to convert characters to the external encoding.  */
121
122 #define Xchr(x) xchr[x]
123
124 /* following added from new texmf.c file 1996/Jan/12 */
125 /* these, of course are useless definitions since parameters not given */
126
127 /* Declare routines in texmf.c.  */
128 extern void t_open_in();