OSDN Git Service

886122ed3e28fa260cf4f7da8e7bb3dce967a41e
[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 #include "avl.h"
60
61 typedef int         integer;
62 typedef double      glue_ratio;
63 typedef boolean     bool;
64 typedef double      real;
65 typedef FILE *      alpha_file;
66 typedef unsigned char ASCII_code;
67 typedef unsigned short KANJI_code;
68 typedef unsigned char eight_bits;
69 typedef unsigned short sixteen_bits;
70 typedef integer pool_pointer;
71 typedef integer str_number;
72 typedef unsigned char packed_ASCII_code;
73 typedef integer scaled;
74 typedef integer nonnegative_integer;
75 typedef char small_number;
76
77 typedef enum
78 {
79   NO_FILE_PATH = -1,
80   TEXFORMATPATH,
81   TEXINPUTPATH,
82   TFMFILEPATH,
83   LAST_PATH
84 } path_constant_type;
85
86 #define TEXFORMATPATHBIT (1 << TEXFORMATPATH)
87 #define TEXINPUTPATHBIT  (1 << TEXINPUTPATH)
88 #define TFMFILEPATHBIT   (1 << TFMFILEPATH)
89
90 #ifdef link
91   #undef link
92 #endif
93
94 #define abs(x)   ((integer)(x) >= 0 ? (integer)(x) : (integer)-(x))
95 #define chr(x)   (x)
96 #define ord(x)   (x)
97 #define odd(x)   ((x) % 2)
98 #define round(x) zround ((double) (x))
99 #define decr(x)  --(x)
100 #define incr(x)  ++(x)
101 #define fabs(x)  ((x) >= 0.0 ? (x) : -(x))
102 #define PATHMAX  PATH_MAX
103 #define toint(x) ((integer) (x))
104 #define a_open_in(f,p) open_input (&(f), p, FOPEN_R_MODE)
105 #define a_open_out(f)   open_output (&(f), FOPEN_W_MODE)
106 #define a_close(f)      check_fclose (f)
107
108 #define MAXLINE 256 // for log_line buffer
109
110 extern bool trace_flag;
111 extern bool open_trace_flag;
112 extern integer zround (double);
113 extern bool eoln (FILE * file);
114 extern bool open_input (FILE **f, path_constant_type path_index, char *fopen_mode);
115 extern bool open_output (FILE **f, char *fopen_mode);
116 extern int check_fclose (FILE * f);
117
118 #define show_line(str,flag) fputs(str,stdout)
119 #define show_char(chr) putc(chr, stdout)
120 extern char log_line[];
121
122 #endif