@img/sharp-libvips-dev 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/expat.h +37 -24
- package/include/expat_config.h +9 -9
- package/include/expat_external.h +62 -61
- package/include/libxml2/libxml/HTMLparser.h +159 -101
- package/include/libxml2/libxml/HTMLtree.h +49 -74
- package/include/libxml2/libxml/SAX.h +8 -5
- package/include/libxml2/libxml/SAX2.h +18 -15
- package/include/libxml2/libxml/c14n.h +30 -29
- package/include/libxml2/libxml/catalog.h +47 -22
- package/include/libxml2/libxml/chvalid.h +52 -64
- package/include/libxml2/libxml/debugXML.h +18 -15
- package/include/libxml2/libxml/dict.h +22 -19
- package/include/libxml2/libxml/encoding.h +144 -111
- package/include/libxml2/libxml/entities.h +95 -75
- package/include/libxml2/libxml/globals.h +7 -4
- package/include/libxml2/libxml/hash.h +61 -64
- package/include/libxml2/libxml/list.h +59 -51
- package/include/libxml2/libxml/nanoftp.h +7 -4
- package/include/libxml2/libxml/nanohttp.h +10 -7
- package/include/libxml2/libxml/parser.h +1091 -563
- package/include/libxml2/libxml/parserInternals.h +167 -214
- package/include/libxml2/libxml/pattern.h +29 -31
- package/include/libxml2/libxml/relaxng.h +59 -58
- package/include/libxml2/libxml/schemasInternals.h +114 -268
- package/include/libxml2/libxml/schematron.h +59 -51
- package/include/libxml2/libxml/threads.h +19 -20
- package/include/libxml2/libxml/tree.h +873 -623
- package/include/libxml2/libxml/uri.h +21 -22
- package/include/libxml2/libxml/valid.h +170 -199
- package/include/libxml2/libxml/xinclude.h +24 -43
- package/include/libxml2/libxml/xlink.h +55 -51
- package/include/libxml2/libxml/xmlIO.h +133 -151
- package/include/libxml2/libxml/xmlautomata.h +66 -65
- package/include/libxml2/libxml/xmlerror.h +197 -94
- package/include/libxml2/libxml/xmlexports.h +17 -19
- package/include/libxml2/libxml/xmlmemory.h +44 -29
- package/include/libxml2/libxml/xmlmodule.h +14 -15
- package/include/libxml2/libxml/xmlreader.h +137 -131
- package/include/libxml2/libxml/xmlregexp.h +28 -31
- package/include/libxml2/libxml/xmlsave.h +81 -36
- package/include/libxml2/libxml/xmlschemas.h +61 -67
- package/include/libxml2/libxml/xmlschemastypes.h +60 -54
- package/include/libxml2/libxml/xmlstring.h +8 -9
- package/include/libxml2/libxml/xmlunicode.h +6 -3
- package/include/libxml2/libxml/xmlversion.h +44 -121
- package/include/libxml2/libxml/xmlwriter.h +97 -97
- package/include/libxml2/libxml/xpath.h +235 -232
- package/include/libxml2/libxml/xpathInternals.h +247 -277
- package/include/libxml2/libxml/xpointer.h +21 -17
- package/package.json +1 -1
- package/versions.json +2 -2
package/include/expat.h
CHANGED
|
@@ -42,21 +42,21 @@
|
|
|
42
42
|
*/
|
|
43
43
|
|
|
44
44
|
#ifndef Expat_INCLUDED
|
|
45
|
-
#define Expat_INCLUDED 1
|
|
45
|
+
# define Expat_INCLUDED 1
|
|
46
46
|
|
|
47
|
-
#include <stdlib.h>
|
|
48
|
-
#include "expat_external.h"
|
|
47
|
+
# include <stdlib.h>
|
|
48
|
+
# include "expat_external.h"
|
|
49
49
|
|
|
50
|
-
#ifdef __cplusplus
|
|
50
|
+
# ifdef __cplusplus
|
|
51
51
|
extern "C" {
|
|
52
|
-
#endif
|
|
52
|
+
# endif
|
|
53
53
|
|
|
54
54
|
struct XML_ParserStruct;
|
|
55
55
|
typedef struct XML_ParserStruct *XML_Parser;
|
|
56
56
|
|
|
57
57
|
typedef unsigned char XML_Bool;
|
|
58
|
-
#define XML_TRUE ((XML_Bool)1)
|
|
59
|
-
#define XML_FALSE ((XML_Bool)0)
|
|
58
|
+
# define XML_TRUE ((XML_Bool)1)
|
|
59
|
+
# define XML_FALSE ((XML_Bool)0)
|
|
60
60
|
|
|
61
61
|
/* The XML_Status enum gives the possible return values for several
|
|
62
62
|
API functions. The preprocessor #defines are included so this
|
|
@@ -73,11 +73,11 @@ typedef unsigned char XML_Bool;
|
|
|
73
73
|
*/
|
|
74
74
|
enum XML_Status {
|
|
75
75
|
XML_STATUS_ERROR = 0,
|
|
76
|
-
#define XML_STATUS_ERROR XML_STATUS_ERROR
|
|
76
|
+
# define XML_STATUS_ERROR XML_STATUS_ERROR
|
|
77
77
|
XML_STATUS_OK = 1,
|
|
78
|
-
#define XML_STATUS_OK XML_STATUS_OK
|
|
78
|
+
# define XML_STATUS_OK XML_STATUS_OK
|
|
79
79
|
XML_STATUS_SUSPENDED = 2
|
|
80
|
-
#define XML_STATUS_SUSPENDED XML_STATUS_SUSPENDED
|
|
80
|
+
# define XML_STATUS_SUSPENDED XML_STATUS_SUSPENDED
|
|
81
81
|
};
|
|
82
82
|
|
|
83
83
|
enum XML_Error {
|
|
@@ -680,7 +680,7 @@ XMLPARSEAPI(void)
|
|
|
680
680
|
XML_SetUserData(XML_Parser parser, void *userData);
|
|
681
681
|
|
|
682
682
|
/* Returns the last value set by XML_SetUserData or NULL. */
|
|
683
|
-
#define XML_GetUserData(parser) (*(void **)(parser))
|
|
683
|
+
# define XML_GetUserData(parser) (*(void **)(parser))
|
|
684
684
|
|
|
685
685
|
/* This is equivalent to supplying an encoding argument to
|
|
686
686
|
XML_ParserCreate. On success XML_SetEncoding returns non-zero,
|
|
@@ -752,7 +752,7 @@ XML_GetSpecifiedAttributeCount(XML_Parser parser);
|
|
|
752
752
|
XMLPARSEAPI(int)
|
|
753
753
|
XML_GetIdAttributeIndex(XML_Parser parser);
|
|
754
754
|
|
|
755
|
-
#ifdef XML_ATTR_INFO
|
|
755
|
+
# ifdef XML_ATTR_INFO
|
|
756
756
|
/* Source file byte offsets for the start and end of attribute names and values.
|
|
757
757
|
The value indices are exclusive of surrounding quotes; thus in a UTF-8 source
|
|
758
758
|
file an attribute value of "blah" will yield:
|
|
@@ -773,7 +773,7 @@ typedef struct {
|
|
|
773
773
|
*/
|
|
774
774
|
XMLPARSEAPI(const XML_AttrInfo *)
|
|
775
775
|
XML_GetAttributeInfo(XML_Parser parser);
|
|
776
|
-
#endif
|
|
776
|
+
# endif
|
|
777
777
|
|
|
778
778
|
/* Parses some input. Returns XML_STATUS_ERROR if a fatal error is
|
|
779
779
|
detected. The last call to XML_Parse must have isFinal true; len
|
|
@@ -970,9 +970,9 @@ XMLPARSEAPI(const char *)
|
|
|
970
970
|
XML_GetInputContext(XML_Parser parser, int *offset, int *size);
|
|
971
971
|
|
|
972
972
|
/* For backwards compatibility with previous versions. */
|
|
973
|
-
#define XML_GetErrorLineNumber XML_GetCurrentLineNumber
|
|
974
|
-
#define XML_GetErrorColumnNumber XML_GetCurrentColumnNumber
|
|
975
|
-
#define XML_GetErrorByteIndex XML_GetCurrentByteIndex
|
|
973
|
+
# define XML_GetErrorLineNumber XML_GetCurrentLineNumber
|
|
974
|
+
# define XML_GetErrorColumnNumber XML_GetCurrentColumnNumber
|
|
975
|
+
# define XML_GetErrorByteIndex XML_GetCurrentByteIndex
|
|
976
976
|
|
|
977
977
|
/* Frees the content model passed to the element declaration handler */
|
|
978
978
|
XMLPARSEAPI(void)
|
|
@@ -1032,7 +1032,10 @@ enum XML_FeatureEnum {
|
|
|
1032
1032
|
XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_MAXIMUM_AMPLIFICATION_DEFAULT,
|
|
1033
1033
|
XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_ACTIVATION_THRESHOLD_DEFAULT,
|
|
1034
1034
|
/* Added in Expat 2.6.0. */
|
|
1035
|
-
XML_FEATURE_GE
|
|
1035
|
+
XML_FEATURE_GE,
|
|
1036
|
+
/* Added in Expat 2.7.2. */
|
|
1037
|
+
XML_FEATURE_ALLOC_TRACKER_MAXIMUM_AMPLIFICATION_DEFAULT,
|
|
1038
|
+
XML_FEATURE_ALLOC_TRACKER_ACTIVATION_THRESHOLD_DEFAULT,
|
|
1036
1039
|
/* Additional features must be added to the end of this enum. */
|
|
1037
1040
|
};
|
|
1038
1041
|
|
|
@@ -1045,7 +1048,7 @@ typedef struct {
|
|
|
1045
1048
|
XMLPARSEAPI(const XML_Feature *)
|
|
1046
1049
|
XML_GetFeatureList(void);
|
|
1047
1050
|
|
|
1048
|
-
#if defined(XML_DTD) || (defined(XML_GE) && XML_GE == 1)
|
|
1051
|
+
# if defined(XML_DTD) || (defined(XML_GE) && XML_GE == 1)
|
|
1049
1052
|
/* Added in Expat 2.4.0 for XML_DTD defined and
|
|
1050
1053
|
* added in Expat 2.6.0 for XML_GE == 1. */
|
|
1051
1054
|
XMLPARSEAPI(XML_Bool)
|
|
@@ -1057,7 +1060,17 @@ XML_SetBillionLaughsAttackProtectionMaximumAmplification(
|
|
|
1057
1060
|
XMLPARSEAPI(XML_Bool)
|
|
1058
1061
|
XML_SetBillionLaughsAttackProtectionActivationThreshold(
|
|
1059
1062
|
XML_Parser parser, unsigned long long activationThresholdBytes);
|
|
1060
|
-
|
|
1063
|
+
|
|
1064
|
+
/* Added in Expat 2.7.2. */
|
|
1065
|
+
XMLPARSEAPI(XML_Bool)
|
|
1066
|
+
XML_SetAllocTrackerMaximumAmplification(XML_Parser parser,
|
|
1067
|
+
float maximumAmplificationFactor);
|
|
1068
|
+
|
|
1069
|
+
/* Added in Expat 2.7.2. */
|
|
1070
|
+
XMLPARSEAPI(XML_Bool)
|
|
1071
|
+
XML_SetAllocTrackerActivationThreshold(
|
|
1072
|
+
XML_Parser parser, unsigned long long activationThresholdBytes);
|
|
1073
|
+
# endif
|
|
1061
1074
|
|
|
1062
1075
|
/* Added in Expat 2.6.0. */
|
|
1063
1076
|
XMLPARSEAPI(XML_Bool)
|
|
@@ -1066,12 +1079,12 @@ XML_SetReparseDeferralEnabled(XML_Parser parser, XML_Bool enabled);
|
|
|
1066
1079
|
/* Expat follows the semantic versioning convention.
|
|
1067
1080
|
See https://semver.org
|
|
1068
1081
|
*/
|
|
1069
|
-
#define XML_MAJOR_VERSION 2
|
|
1070
|
-
#define XML_MINOR_VERSION 7
|
|
1071
|
-
#define XML_MICRO_VERSION
|
|
1082
|
+
# define XML_MAJOR_VERSION 2
|
|
1083
|
+
# define XML_MINOR_VERSION 7
|
|
1084
|
+
# define XML_MICRO_VERSION 2
|
|
1072
1085
|
|
|
1073
|
-
#ifdef __cplusplus
|
|
1086
|
+
# ifdef __cplusplus
|
|
1074
1087
|
}
|
|
1075
|
-
#endif
|
|
1088
|
+
# endif
|
|
1076
1089
|
|
|
1077
1090
|
#endif /* not Expat_INCLUDED */
|
package/include/expat_config.h
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
/* Define to 1 if you have the <fcntl.h> header file. */
|
|
26
26
|
#define HAVE_FCNTL_H 1
|
|
27
27
|
|
|
28
|
-
/* Define to 1 if you have the
|
|
28
|
+
/* Define to 1 if you have the 'getpagesize' function. */
|
|
29
29
|
#define HAVE_GETPAGESIZE 1
|
|
30
30
|
|
|
31
31
|
/* Define to 1 if you have the `getrandom' function. */
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
35
35
|
#define HAVE_INTTYPES_H 1
|
|
36
36
|
|
|
37
|
-
/* Define to 1 if you have the
|
|
37
|
+
/* Define to 1 if you have the 'bsd' library (-lbsd). */
|
|
38
38
|
/* #undef HAVE_LIBBSD */
|
|
39
39
|
|
|
40
|
-
/* Define to 1 if you have a working
|
|
40
|
+
/* Define to 1 if you have a working 'mmap' system call. */
|
|
41
41
|
#define HAVE_MMAP 1
|
|
42
42
|
|
|
43
43
|
/* Define to 1 if you have the <stdint.h> header file. */
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
#define PACKAGE_NAME "expat"
|
|
84
84
|
|
|
85
85
|
/* Define to the full name and version of this package. */
|
|
86
|
-
#define PACKAGE_STRING "expat 2.7.
|
|
86
|
+
#define PACKAGE_STRING "expat 2.7.2"
|
|
87
87
|
|
|
88
88
|
/* Define to the one symbol short name of this package. */
|
|
89
89
|
#define PACKAGE_TARNAME "expat"
|
|
@@ -92,15 +92,15 @@
|
|
|
92
92
|
#define PACKAGE_URL ""
|
|
93
93
|
|
|
94
94
|
/* Define to the version of this package. */
|
|
95
|
-
#define PACKAGE_VERSION "2.7.
|
|
95
|
+
#define PACKAGE_VERSION "2.7.2"
|
|
96
96
|
|
|
97
|
-
/* Define to 1 if all of the
|
|
97
|
+
/* Define to 1 if all of the C89 standard headers exist (not just the ones
|
|
98
98
|
required in a freestanding environment). This macro is provided for
|
|
99
99
|
backward compatibility; new code need not use it. */
|
|
100
100
|
#define STDC_HEADERS 1
|
|
101
101
|
|
|
102
102
|
/* Version number of package */
|
|
103
|
-
#define VERSION "2.7.
|
|
103
|
+
#define VERSION "2.7.2"
|
|
104
104
|
|
|
105
105
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
|
106
106
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
|
@@ -134,10 +134,10 @@
|
|
|
134
134
|
/* Define to make XML Namespaces functionality available. */
|
|
135
135
|
#define XML_NS 1
|
|
136
136
|
|
|
137
|
-
/* Define to empty if
|
|
137
|
+
/* Define to empty if 'const' does not conform to ANSI C. */
|
|
138
138
|
/* #undef const */
|
|
139
139
|
|
|
140
|
-
/* Define to
|
|
140
|
+
/* Define to 'long int' if <sys/types.h> does not define. */
|
|
141
141
|
/* #undef off_t */
|
|
142
142
|
|
|
143
143
|
#endif // ndef EXPAT_CONFIG_H
|
package/include/expat_external.h
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
*/
|
|
39
39
|
|
|
40
40
|
#ifndef Expat_External_INCLUDED
|
|
41
|
-
#define Expat_External_INCLUDED 1
|
|
41
|
+
# define Expat_External_INCLUDED 1
|
|
42
42
|
|
|
43
43
|
/* External API definitions */
|
|
44
44
|
|
|
@@ -64,12 +64,12 @@
|
|
|
64
64
|
compiled with the cdecl calling convention as the default since
|
|
65
65
|
system headers may assume the cdecl convention.
|
|
66
66
|
*/
|
|
67
|
-
#ifndef XMLCALL
|
|
68
|
-
#
|
|
69
|
-
#
|
|
70
|
-
#
|
|
71
|
-
#
|
|
72
|
-
#
|
|
67
|
+
# ifndef XMLCALL
|
|
68
|
+
# if defined(_MSC_VER)
|
|
69
|
+
# define XMLCALL __cdecl
|
|
70
|
+
# elif defined(__GNUC__) && defined(__i386) && ! defined(__INTEL_COMPILER)
|
|
71
|
+
# define XMLCALL __attribute__((cdecl))
|
|
72
|
+
# else
|
|
73
73
|
/* For any platform which uses this definition and supports more than
|
|
74
74
|
one calling convention, we need to extend this definition to
|
|
75
75
|
declare the convention used on that platform, if it's possible to
|
|
@@ -80,86 +80,87 @@
|
|
|
80
80
|
pre-processor and how to specify the same calling convention as the
|
|
81
81
|
platform's malloc() implementation.
|
|
82
82
|
*/
|
|
83
|
-
#
|
|
84
|
-
#
|
|
85
|
-
#endif /* not defined XMLCALL */
|
|
83
|
+
# define XMLCALL
|
|
84
|
+
# endif
|
|
85
|
+
# endif /* not defined XMLCALL */
|
|
86
86
|
|
|
87
|
-
#if ! defined(XML_STATIC) && ! defined(XMLIMPORT)
|
|
88
|
-
#
|
|
87
|
+
# if ! defined(XML_STATIC) && ! defined(XMLIMPORT)
|
|
88
|
+
# ifndef XML_BUILDING_EXPAT
|
|
89
89
|
/* using Expat from an application */
|
|
90
90
|
|
|
91
|
-
#
|
|
92
|
-
|
|
91
|
+
# if defined(_MSC_EXTENSIONS) && ! defined(__BEOS__) \
|
|
92
|
+
&& ! defined(__CYGWIN__)
|
|
93
|
+
# define XMLIMPORT __declspec(dllimport)
|
|
94
|
+
# endif
|
|
95
|
+
|
|
93
96
|
# endif
|
|
97
|
+
# endif /* not defined XML_STATIC */
|
|
94
98
|
|
|
99
|
+
# ifndef XML_ENABLE_VISIBILITY
|
|
100
|
+
# define XML_ENABLE_VISIBILITY 0
|
|
95
101
|
# endif
|
|
96
|
-
#endif /* not defined XML_STATIC */
|
|
97
|
-
|
|
98
|
-
#ifndef XML_ENABLE_VISIBILITY
|
|
99
|
-
# define XML_ENABLE_VISIBILITY 0
|
|
100
|
-
#endif
|
|
101
102
|
|
|
102
|
-
#if ! defined(XMLIMPORT) && XML_ENABLE_VISIBILITY
|
|
103
|
-
#
|
|
104
|
-
#endif
|
|
103
|
+
# if ! defined(XMLIMPORT) && XML_ENABLE_VISIBILITY
|
|
104
|
+
# define XMLIMPORT __attribute__((visibility("default")))
|
|
105
|
+
# endif
|
|
105
106
|
|
|
106
107
|
/* If we didn't define it above, define it away: */
|
|
107
|
-
#ifndef XMLIMPORT
|
|
108
|
-
#
|
|
109
|
-
#endif
|
|
110
|
-
|
|
111
|
-
#if defined(__GNUC__)
|
|
112
|
-
|
|
113
|
-
#
|
|
114
|
-
#else
|
|
115
|
-
#
|
|
116
|
-
#endif
|
|
117
|
-
|
|
118
|
-
#if defined(__GNUC__) \
|
|
119
|
-
&& ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
|
|
120
|
-
# define XML_ATTR_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
|
|
121
|
-
#else
|
|
122
|
-
# define XML_ATTR_ALLOC_SIZE(x)
|
|
123
|
-
#endif
|
|
124
|
-
|
|
125
|
-
#define XMLPARSEAPI(type) XMLIMPORT type XMLCALL
|
|
126
|
-
|
|
127
|
-
#ifdef __cplusplus
|
|
128
|
-
extern "C" {
|
|
129
|
-
#endif
|
|
108
|
+
# ifndef XMLIMPORT
|
|
109
|
+
# define XMLIMPORT
|
|
110
|
+
# endif
|
|
111
|
+
|
|
112
|
+
# if defined(__GNUC__) \
|
|
113
|
+
&& (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96))
|
|
114
|
+
# define XML_ATTR_MALLOC __attribute__((__malloc__))
|
|
115
|
+
# else
|
|
116
|
+
# define XML_ATTR_MALLOC
|
|
117
|
+
# endif
|
|
130
118
|
|
|
131
|
-
#
|
|
132
|
-
|
|
133
|
-
# define
|
|
119
|
+
# if defined(__GNUC__) \
|
|
120
|
+
&& ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
|
|
121
|
+
# define XML_ATTR_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
|
|
122
|
+
# else
|
|
123
|
+
# define XML_ATTR_ALLOC_SIZE(x)
|
|
134
124
|
# endif
|
|
135
|
-
|
|
136
|
-
#
|
|
125
|
+
|
|
126
|
+
# define XMLPARSEAPI(type) XMLIMPORT type XMLCALL
|
|
127
|
+
|
|
128
|
+
# ifdef __cplusplus
|
|
129
|
+
extern "C" {
|
|
137
130
|
# endif
|
|
138
|
-
#endif
|
|
139
131
|
|
|
140
|
-
#ifdef XML_UNICODE /* Information is UTF-16 encoded. */
|
|
141
132
|
# ifdef XML_UNICODE_WCHAR_T
|
|
133
|
+
# ifndef XML_UNICODE
|
|
134
|
+
# define XML_UNICODE
|
|
135
|
+
# endif
|
|
136
|
+
# if defined(__SIZEOF_WCHAR_T__) && (__SIZEOF_WCHAR_T__ != 2)
|
|
137
|
+
# error "sizeof(wchar_t) != 2; Need -fshort-wchar for both Expat and libc"
|
|
138
|
+
# endif
|
|
139
|
+
# endif
|
|
140
|
+
|
|
141
|
+
# ifdef XML_UNICODE /* Information is UTF-16 encoded. */
|
|
142
|
+
# ifdef XML_UNICODE_WCHAR_T
|
|
142
143
|
typedef wchar_t XML_Char;
|
|
143
144
|
typedef wchar_t XML_LChar;
|
|
144
|
-
#
|
|
145
|
+
# else
|
|
145
146
|
typedef unsigned short XML_Char;
|
|
146
147
|
typedef char XML_LChar;
|
|
147
|
-
#
|
|
148
|
-
#else /* Information is UTF-8 encoded. */
|
|
148
|
+
# endif /* XML_UNICODE_WCHAR_T */
|
|
149
|
+
# else /* Information is UTF-8 encoded. */
|
|
149
150
|
typedef char XML_Char;
|
|
150
151
|
typedef char XML_LChar;
|
|
151
|
-
#endif /* XML_UNICODE */
|
|
152
|
+
# endif /* XML_UNICODE */
|
|
152
153
|
|
|
153
|
-
#ifdef XML_LARGE_SIZE /* Use large integers for file/stream positions. */
|
|
154
|
+
# ifdef XML_LARGE_SIZE /* Use large integers for file/stream positions. */
|
|
154
155
|
typedef long long XML_Index;
|
|
155
156
|
typedef unsigned long long XML_Size;
|
|
156
|
-
#else
|
|
157
|
+
# else
|
|
157
158
|
typedef long XML_Index;
|
|
158
159
|
typedef unsigned long XML_Size;
|
|
159
|
-
#endif /* XML_LARGE_SIZE */
|
|
160
|
+
# endif /* XML_LARGE_SIZE */
|
|
160
161
|
|
|
161
|
-
#ifdef __cplusplus
|
|
162
|
+
# ifdef __cplusplus
|
|
162
163
|
}
|
|
163
|
-
#endif
|
|
164
|
+
# endif
|
|
164
165
|
|
|
165
166
|
#endif /* not Expat_External_INCLUDED */
|