OSDN Git Service

077afeca1b021fe84b5a2204462de129490a9a73
[putex/putex.git] / src / texsourc / yandytex.h
1 /* Copyright 2014 Clerk Ma
2
3    This program is free software; you can redistribute it and/or modify
4    it under the terms of the GNU General Public License as published by
5    the Free Software Foundation; either version 2 of the License, or
6    (at your option) any later version.
7
8    This program is distributed in the hope that it will be useful, but
9    WITHOUT ANY WARRANTY; without even the implied warranty of
10    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11    General Public License for more details.
12
13    You should have received a copy of the GNU General Public License
14    along with this program; if not, write to the Free Software
15    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16    02110-1301 USA.  */
17
18 #ifndef _YANDYTEX_H
19 #define _YANDYTEX_H
20
21 #define WORDS_BIGENDIAN 0
22
23 //#pragma warning(disable:4032)
24 #pragma warning(disable:4996) //
25 #pragma warning(disable:4701) //
26 //#pragma warning(disable:4100)
27 //#pragma warning(disable:4244)
28 #pragma warning(disable:4131) // old style declarator
29 #pragma warning(disable:4135) // conversion between different integral types
30 #pragma warning(disable:4127) // conditional expression is constant
31
32 /* ``Standard'' headers.  */
33 #include <kpathsea/c-auto.h>
34 #include <kpathsea/c-std.h>
35 #include <kpathsea/c-pathmx.h>
36 #include <kpathsea/c-fopen.h>
37 #include <kpathsea/c-ctype.h>
38 #include <kpathsea/c-proto.h>
39 #include <kpathsea/config.h>
40 #include <kpathsea/getopt.h>
41 #include <kpathsea/lib.h>
42 #include <kpathsea/line.h>
43 #include <kpathsea/readable.h>
44 #include <kpathsea/types.h>
45 #include <kpathsea/tex-file.h>
46 #include <kpathsea/variable.h>
47 #include <kpathsea/absolute.h>
48 #include <stdarg.h>
49 #include <setjmp.h>
50 #include <time.h>
51 #include <signal.h>
52 #ifdef _WIN32
53   #include <kpathsea/win32lib.h>
54 #else
55   #include <unistd.h>
56 #endif
57 #include "hpdf.h"
58 #include "hpdf_utils.h"
59
60 typedef int         integer;
61 typedef double      glue_ratio;
62 typedef boolean     bool;
63 typedef double      real;
64 typedef FILE *      alpha_file;
65 typedef unsigned char ASCII_code;
66 typedef unsigned short KANJI_code;
67 typedef unsigned char eight_bits;
68 typedef unsigned short sixteen_bits;
69 typedef integer pool_pointer;
70 typedef integer str_number;
71 typedef unsigned char packed_ASCII_code;
72 typedef integer scaled;
73 typedef integer nonnegative_integer;
74 typedef char small_number;
75
76 typedef enum
77 {
78   NO_FILE_PATH = -1,
79   TEXFORMATPATH,
80   TEXINPUTPATH,
81   TFMFILEPATH,
82   LAST_PATH
83 } path_constant_type;
84
85 #define TEXFORMATPATHBIT (1 << TEXFORMATPATH)
86 #define TEXINPUTPATHBIT  (1 << TEXINPUTPATH)
87 #define TFMFILEPATHBIT   (1 << TFMFILEPATH)
88
89 #ifdef link
90   #undef link
91 #endif
92
93 #define abs(x)   ((integer)(x) >= 0 ? (integer)(x) : (integer)-(x))
94 #define chr(x)   (x)
95 #define ord(x)   (x)
96 #define odd(x)   ((x) % 2)
97 #define round(x) zround ((double) (x))
98 #define decr(x)  --(x)
99 #define incr(x)  ++(x)
100 #define fabs(x)  ((x) >= 0.0 ? (x) : -(x))
101 #define PATHMAX  PATH_MAX
102 #define toint(x) ((integer) (x))
103 #define a_open_in(f,p) open_input (&(f), p, FOPEN_R_MODE)
104 #define a_open_out(f)   open_output (&(f), FOPEN_W_MODE)
105 #define a_close(f)      check_fclose (f)
106
107 #define MAXLINE 256 // for log_line buffer
108
109 extern bool trace_flag;
110 extern bool open_trace_flag;
111 extern integer zround (double);
112 extern bool eoln (FILE * file);
113 extern bool open_input (FILE **f, path_constant_type path_index, char *fopen_mode);
114 extern bool open_output (FILE **f, char *fopen_mode);
115 extern int check_fclose (FILE * f);
116
117 #define show_line(str,flag) fputs(str,stdout)
118 #define show_char(chr) putc(chr, stdout)
119 extern char log_line[];
120
121 #endif