lxml 6.0.0__cp310-cp310-win_arm64.whl

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.
Files changed (177) hide show
  1. lxml/ElementInclude.py +244 -0
  2. lxml/__init__.py +22 -0
  3. lxml/_elementpath.cp310-win_arm64.pyd +0 -0
  4. lxml/_elementpath.py +343 -0
  5. lxml/apihelpers.pxi +1801 -0
  6. lxml/builder.cp310-win_arm64.pyd +0 -0
  7. lxml/builder.py +243 -0
  8. lxml/classlookup.pxi +580 -0
  9. lxml/cleanup.pxi +215 -0
  10. lxml/cssselect.py +101 -0
  11. lxml/debug.pxi +36 -0
  12. lxml/docloader.pxi +178 -0
  13. lxml/doctestcompare.py +488 -0
  14. lxml/dtd.pxi +479 -0
  15. lxml/etree.cp310-win_arm64.pyd +0 -0
  16. lxml/etree.h +244 -0
  17. lxml/etree.pyx +3853 -0
  18. lxml/etree_api.h +204 -0
  19. lxml/extensions.pxi +830 -0
  20. lxml/html/ElementSoup.py +10 -0
  21. lxml/html/__init__.py +1927 -0
  22. lxml/html/_diffcommand.py +86 -0
  23. lxml/html/_difflib.cp310-win_arm64.pyd +0 -0
  24. lxml/html/_difflib.py +2106 -0
  25. lxml/html/_html5builder.py +100 -0
  26. lxml/html/_setmixin.py +56 -0
  27. lxml/html/builder.py +173 -0
  28. lxml/html/clean.py +21 -0
  29. lxml/html/defs.py +135 -0
  30. lxml/html/diff.cp310-win_arm64.pyd +0 -0
  31. lxml/html/diff.py +972 -0
  32. lxml/html/formfill.py +299 -0
  33. lxml/html/html5parser.py +260 -0
  34. lxml/html/soupparser.py +314 -0
  35. lxml/html/usedoctest.py +13 -0
  36. lxml/includes/__init__.pxd +0 -0
  37. lxml/includes/__init__.py +0 -0
  38. lxml/includes/c14n.pxd +25 -0
  39. lxml/includes/config.pxd +3 -0
  40. lxml/includes/dtdvalid.pxd +18 -0
  41. lxml/includes/etree_defs.h +379 -0
  42. lxml/includes/etreepublic.pxd +237 -0
  43. lxml/includes/extlibs/__init__.py +0 -0
  44. lxml/includes/extlibs/zconf.h +543 -0
  45. lxml/includes/extlibs/zlib.h +1938 -0
  46. lxml/includes/htmlparser.pxd +56 -0
  47. lxml/includes/libexslt/__init__.py +0 -0
  48. lxml/includes/libexslt/exslt.h +108 -0
  49. lxml/includes/libexslt/exsltconfig.h +70 -0
  50. lxml/includes/libexslt/exsltexports.h +63 -0
  51. lxml/includes/libexslt/libexslt.h +29 -0
  52. lxml/includes/libxml/HTMLparser.h +320 -0
  53. lxml/includes/libxml/HTMLtree.h +147 -0
  54. lxml/includes/libxml/SAX.h +204 -0
  55. lxml/includes/libxml/SAX2.h +173 -0
  56. lxml/includes/libxml/__init__.py +0 -0
  57. lxml/includes/libxml/c14n.h +128 -0
  58. lxml/includes/libxml/catalog.h +182 -0
  59. lxml/includes/libxml/chvalid.h +230 -0
  60. lxml/includes/libxml/debugXML.h +217 -0
  61. lxml/includes/libxml/dict.h +81 -0
  62. lxml/includes/libxml/encoding.h +233 -0
  63. lxml/includes/libxml/entities.h +151 -0
  64. lxml/includes/libxml/globals.h +529 -0
  65. lxml/includes/libxml/hash.h +236 -0
  66. lxml/includes/libxml/list.h +137 -0
  67. lxml/includes/libxml/nanoftp.h +186 -0
  68. lxml/includes/libxml/nanohttp.h +81 -0
  69. lxml/includes/libxml/parser.h +1265 -0
  70. lxml/includes/libxml/parserInternals.h +662 -0
  71. lxml/includes/libxml/pattern.h +100 -0
  72. lxml/includes/libxml/relaxng.h +218 -0
  73. lxml/includes/libxml/schemasInternals.h +958 -0
  74. lxml/includes/libxml/schematron.h +142 -0
  75. lxml/includes/libxml/threads.h +94 -0
  76. lxml/includes/libxml/tree.h +1314 -0
  77. lxml/includes/libxml/uri.h +94 -0
  78. lxml/includes/libxml/valid.h +448 -0
  79. lxml/includes/libxml/xinclude.h +129 -0
  80. lxml/includes/libxml/xlink.h +189 -0
  81. lxml/includes/libxml/xmlIO.h +369 -0
  82. lxml/includes/libxml/xmlautomata.h +146 -0
  83. lxml/includes/libxml/xmlerror.h +919 -0
  84. lxml/includes/libxml/xmlexports.h +50 -0
  85. lxml/includes/libxml/xmlmemory.h +228 -0
  86. lxml/includes/libxml/xmlmodule.h +57 -0
  87. lxml/includes/libxml/xmlreader.h +428 -0
  88. lxml/includes/libxml/xmlregexp.h +222 -0
  89. lxml/includes/libxml/xmlsave.h +88 -0
  90. lxml/includes/libxml/xmlschemas.h +246 -0
  91. lxml/includes/libxml/xmlschemastypes.h +152 -0
  92. lxml/includes/libxml/xmlstring.h +140 -0
  93. lxml/includes/libxml/xmlunicode.h +202 -0
  94. lxml/includes/libxml/xmlversion.h +526 -0
  95. lxml/includes/libxml/xmlwriter.h +488 -0
  96. lxml/includes/libxml/xpath.h +575 -0
  97. lxml/includes/libxml/xpathInternals.h +632 -0
  98. lxml/includes/libxml/xpointer.h +137 -0
  99. lxml/includes/libxslt/__init__.py +0 -0
  100. lxml/includes/libxslt/attributes.h +39 -0
  101. lxml/includes/libxslt/documents.h +93 -0
  102. lxml/includes/libxslt/extensions.h +262 -0
  103. lxml/includes/libxslt/extra.h +72 -0
  104. lxml/includes/libxslt/functions.h +78 -0
  105. lxml/includes/libxslt/imports.h +75 -0
  106. lxml/includes/libxslt/keys.h +53 -0
  107. lxml/includes/libxslt/libxslt.h +36 -0
  108. lxml/includes/libxslt/namespaces.h +68 -0
  109. lxml/includes/libxslt/numbersInternals.h +73 -0
  110. lxml/includes/libxslt/preproc.h +43 -0
  111. lxml/includes/libxslt/security.h +104 -0
  112. lxml/includes/libxslt/templates.h +77 -0
  113. lxml/includes/libxslt/transform.h +207 -0
  114. lxml/includes/libxslt/trio.h +216 -0
  115. lxml/includes/libxslt/triodef.h +220 -0
  116. lxml/includes/libxslt/variables.h +118 -0
  117. lxml/includes/libxslt/win32config.h +51 -0
  118. lxml/includes/libxslt/xslt.h +110 -0
  119. lxml/includes/libxslt/xsltInternals.h +1992 -0
  120. lxml/includes/libxslt/xsltconfig.h +179 -0
  121. lxml/includes/libxslt/xsltexports.h +64 -0
  122. lxml/includes/libxslt/xsltlocale.h +44 -0
  123. lxml/includes/libxslt/xsltutils.h +343 -0
  124. lxml/includes/lxml-version.h +3 -0
  125. lxml/includes/relaxng.pxd +64 -0
  126. lxml/includes/schematron.pxd +34 -0
  127. lxml/includes/tree.pxd +492 -0
  128. lxml/includes/uri.pxd +5 -0
  129. lxml/includes/xinclude.pxd +22 -0
  130. lxml/includes/xmlerror.pxd +852 -0
  131. lxml/includes/xmlparser.pxd +303 -0
  132. lxml/includes/xmlschema.pxd +35 -0
  133. lxml/includes/xpath.pxd +136 -0
  134. lxml/includes/xslt.pxd +190 -0
  135. lxml/isoschematron/__init__.py +348 -0
  136. lxml/isoschematron/resources/rng/iso-schematron.rng +709 -0
  137. lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl +75 -0
  138. lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl +77 -0
  139. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl +313 -0
  140. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl +1160 -0
  141. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl +55 -0
  142. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl +1796 -0
  143. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl +588 -0
  144. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt +84 -0
  145. lxml/iterparse.pxi +438 -0
  146. lxml/lxml.etree.h +244 -0
  147. lxml/lxml.etree_api.h +204 -0
  148. lxml/nsclasses.pxi +281 -0
  149. lxml/objectify.cp310-win_arm64.pyd +0 -0
  150. lxml/objectify.pyx +2149 -0
  151. lxml/objectpath.pxi +332 -0
  152. lxml/parser.pxi +2059 -0
  153. lxml/parsertarget.pxi +180 -0
  154. lxml/proxy.pxi +619 -0
  155. lxml/public-api.pxi +178 -0
  156. lxml/pyclasslookup.py +3 -0
  157. lxml/readonlytree.pxi +565 -0
  158. lxml/relaxng.pxi +165 -0
  159. lxml/sax.cp310-win_arm64.pyd +0 -0
  160. lxml/sax.py +286 -0
  161. lxml/saxparser.pxi +875 -0
  162. lxml/schematron.pxi +173 -0
  163. lxml/serializer.pxi +1849 -0
  164. lxml/usedoctest.py +13 -0
  165. lxml/xinclude.pxi +67 -0
  166. lxml/xmlerror.pxi +1654 -0
  167. lxml/xmlid.pxi +179 -0
  168. lxml/xmlschema.pxi +215 -0
  169. lxml/xpath.pxi +487 -0
  170. lxml/xslt.pxi +957 -0
  171. lxml/xsltext.pxi +242 -0
  172. lxml-6.0.0.dist-info/METADATA +163 -0
  173. lxml-6.0.0.dist-info/RECORD +177 -0
  174. lxml-6.0.0.dist-info/WHEEL +5 -0
  175. lxml-6.0.0.dist-info/licenses/LICENSE.txt +31 -0
  176. lxml-6.0.0.dist-info/licenses/LICENSES.txt +29 -0
  177. lxml-6.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,202 @@
1
+ /*
2
+ * Summary: Unicode character APIs
3
+ * Description: API for the Unicode character APIs
4
+ *
5
+ * This file is automatically generated from the
6
+ * UCS description files of the Unicode Character Database
7
+ * http://www.unicode.org/Public/4.0-Update1/UCD-4.0.1.html
8
+ * using the genUnicode.py Python script.
9
+ *
10
+ * Generation date: Mon Mar 27 11:09:52 2006
11
+ * Sources: Blocks-4.0.1.txt UnicodeData-4.0.1.txt
12
+ * Author: Daniel Veillard
13
+ */
14
+
15
+ #ifndef __XML_UNICODE_H__
16
+ #define __XML_UNICODE_H__
17
+
18
+ #include <libxml/xmlversion.h>
19
+
20
+ #ifdef LIBXML_UNICODE_ENABLED
21
+
22
+ #ifdef __cplusplus
23
+ extern "C" {
24
+ #endif
25
+
26
+ XMLPUBFUN int xmlUCSIsAegeanNumbers (int code);
27
+ XMLPUBFUN int xmlUCSIsAlphabeticPresentationForms (int code);
28
+ XMLPUBFUN int xmlUCSIsArabic (int code);
29
+ XMLPUBFUN int xmlUCSIsArabicPresentationFormsA (int code);
30
+ XMLPUBFUN int xmlUCSIsArabicPresentationFormsB (int code);
31
+ XMLPUBFUN int xmlUCSIsArmenian (int code);
32
+ XMLPUBFUN int xmlUCSIsArrows (int code);
33
+ XMLPUBFUN int xmlUCSIsBasicLatin (int code);
34
+ XMLPUBFUN int xmlUCSIsBengali (int code);
35
+ XMLPUBFUN int xmlUCSIsBlockElements (int code);
36
+ XMLPUBFUN int xmlUCSIsBopomofo (int code);
37
+ XMLPUBFUN int xmlUCSIsBopomofoExtended (int code);
38
+ XMLPUBFUN int xmlUCSIsBoxDrawing (int code);
39
+ XMLPUBFUN int xmlUCSIsBraillePatterns (int code);
40
+ XMLPUBFUN int xmlUCSIsBuhid (int code);
41
+ XMLPUBFUN int xmlUCSIsByzantineMusicalSymbols (int code);
42
+ XMLPUBFUN int xmlUCSIsCJKCompatibility (int code);
43
+ XMLPUBFUN int xmlUCSIsCJKCompatibilityForms (int code);
44
+ XMLPUBFUN int xmlUCSIsCJKCompatibilityIdeographs (int code);
45
+ XMLPUBFUN int xmlUCSIsCJKCompatibilityIdeographsSupplement (int code);
46
+ XMLPUBFUN int xmlUCSIsCJKRadicalsSupplement (int code);
47
+ XMLPUBFUN int xmlUCSIsCJKSymbolsandPunctuation (int code);
48
+ XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographs (int code);
49
+ XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographsExtensionA (int code);
50
+ XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographsExtensionB (int code);
51
+ XMLPUBFUN int xmlUCSIsCherokee (int code);
52
+ XMLPUBFUN int xmlUCSIsCombiningDiacriticalMarks (int code);
53
+ XMLPUBFUN int xmlUCSIsCombiningDiacriticalMarksforSymbols (int code);
54
+ XMLPUBFUN int xmlUCSIsCombiningHalfMarks (int code);
55
+ XMLPUBFUN int xmlUCSIsCombiningMarksforSymbols (int code);
56
+ XMLPUBFUN int xmlUCSIsControlPictures (int code);
57
+ XMLPUBFUN int xmlUCSIsCurrencySymbols (int code);
58
+ XMLPUBFUN int xmlUCSIsCypriotSyllabary (int code);
59
+ XMLPUBFUN int xmlUCSIsCyrillic (int code);
60
+ XMLPUBFUN int xmlUCSIsCyrillicSupplement (int code);
61
+ XMLPUBFUN int xmlUCSIsDeseret (int code);
62
+ XMLPUBFUN int xmlUCSIsDevanagari (int code);
63
+ XMLPUBFUN int xmlUCSIsDingbats (int code);
64
+ XMLPUBFUN int xmlUCSIsEnclosedAlphanumerics (int code);
65
+ XMLPUBFUN int xmlUCSIsEnclosedCJKLettersandMonths (int code);
66
+ XMLPUBFUN int xmlUCSIsEthiopic (int code);
67
+ XMLPUBFUN int xmlUCSIsGeneralPunctuation (int code);
68
+ XMLPUBFUN int xmlUCSIsGeometricShapes (int code);
69
+ XMLPUBFUN int xmlUCSIsGeorgian (int code);
70
+ XMLPUBFUN int xmlUCSIsGothic (int code);
71
+ XMLPUBFUN int xmlUCSIsGreek (int code);
72
+ XMLPUBFUN int xmlUCSIsGreekExtended (int code);
73
+ XMLPUBFUN int xmlUCSIsGreekandCoptic (int code);
74
+ XMLPUBFUN int xmlUCSIsGujarati (int code);
75
+ XMLPUBFUN int xmlUCSIsGurmukhi (int code);
76
+ XMLPUBFUN int xmlUCSIsHalfwidthandFullwidthForms (int code);
77
+ XMLPUBFUN int xmlUCSIsHangulCompatibilityJamo (int code);
78
+ XMLPUBFUN int xmlUCSIsHangulJamo (int code);
79
+ XMLPUBFUN int xmlUCSIsHangulSyllables (int code);
80
+ XMLPUBFUN int xmlUCSIsHanunoo (int code);
81
+ XMLPUBFUN int xmlUCSIsHebrew (int code);
82
+ XMLPUBFUN int xmlUCSIsHighPrivateUseSurrogates (int code);
83
+ XMLPUBFUN int xmlUCSIsHighSurrogates (int code);
84
+ XMLPUBFUN int xmlUCSIsHiragana (int code);
85
+ XMLPUBFUN int xmlUCSIsIPAExtensions (int code);
86
+ XMLPUBFUN int xmlUCSIsIdeographicDescriptionCharacters (int code);
87
+ XMLPUBFUN int xmlUCSIsKanbun (int code);
88
+ XMLPUBFUN int xmlUCSIsKangxiRadicals (int code);
89
+ XMLPUBFUN int xmlUCSIsKannada (int code);
90
+ XMLPUBFUN int xmlUCSIsKatakana (int code);
91
+ XMLPUBFUN int xmlUCSIsKatakanaPhoneticExtensions (int code);
92
+ XMLPUBFUN int xmlUCSIsKhmer (int code);
93
+ XMLPUBFUN int xmlUCSIsKhmerSymbols (int code);
94
+ XMLPUBFUN int xmlUCSIsLao (int code);
95
+ XMLPUBFUN int xmlUCSIsLatin1Supplement (int code);
96
+ XMLPUBFUN int xmlUCSIsLatinExtendedA (int code);
97
+ XMLPUBFUN int xmlUCSIsLatinExtendedB (int code);
98
+ XMLPUBFUN int xmlUCSIsLatinExtendedAdditional (int code);
99
+ XMLPUBFUN int xmlUCSIsLetterlikeSymbols (int code);
100
+ XMLPUBFUN int xmlUCSIsLimbu (int code);
101
+ XMLPUBFUN int xmlUCSIsLinearBIdeograms (int code);
102
+ XMLPUBFUN int xmlUCSIsLinearBSyllabary (int code);
103
+ XMLPUBFUN int xmlUCSIsLowSurrogates (int code);
104
+ XMLPUBFUN int xmlUCSIsMalayalam (int code);
105
+ XMLPUBFUN int xmlUCSIsMathematicalAlphanumericSymbols (int code);
106
+ XMLPUBFUN int xmlUCSIsMathematicalOperators (int code);
107
+ XMLPUBFUN int xmlUCSIsMiscellaneousMathematicalSymbolsA (int code);
108
+ XMLPUBFUN int xmlUCSIsMiscellaneousMathematicalSymbolsB (int code);
109
+ XMLPUBFUN int xmlUCSIsMiscellaneousSymbols (int code);
110
+ XMLPUBFUN int xmlUCSIsMiscellaneousSymbolsandArrows (int code);
111
+ XMLPUBFUN int xmlUCSIsMiscellaneousTechnical (int code);
112
+ XMLPUBFUN int xmlUCSIsMongolian (int code);
113
+ XMLPUBFUN int xmlUCSIsMusicalSymbols (int code);
114
+ XMLPUBFUN int xmlUCSIsMyanmar (int code);
115
+ XMLPUBFUN int xmlUCSIsNumberForms (int code);
116
+ XMLPUBFUN int xmlUCSIsOgham (int code);
117
+ XMLPUBFUN int xmlUCSIsOldItalic (int code);
118
+ XMLPUBFUN int xmlUCSIsOpticalCharacterRecognition (int code);
119
+ XMLPUBFUN int xmlUCSIsOriya (int code);
120
+ XMLPUBFUN int xmlUCSIsOsmanya (int code);
121
+ XMLPUBFUN int xmlUCSIsPhoneticExtensions (int code);
122
+ XMLPUBFUN int xmlUCSIsPrivateUse (int code);
123
+ XMLPUBFUN int xmlUCSIsPrivateUseArea (int code);
124
+ XMLPUBFUN int xmlUCSIsRunic (int code);
125
+ XMLPUBFUN int xmlUCSIsShavian (int code);
126
+ XMLPUBFUN int xmlUCSIsSinhala (int code);
127
+ XMLPUBFUN int xmlUCSIsSmallFormVariants (int code);
128
+ XMLPUBFUN int xmlUCSIsSpacingModifierLetters (int code);
129
+ XMLPUBFUN int xmlUCSIsSpecials (int code);
130
+ XMLPUBFUN int xmlUCSIsSuperscriptsandSubscripts (int code);
131
+ XMLPUBFUN int xmlUCSIsSupplementalArrowsA (int code);
132
+ XMLPUBFUN int xmlUCSIsSupplementalArrowsB (int code);
133
+ XMLPUBFUN int xmlUCSIsSupplementalMathematicalOperators (int code);
134
+ XMLPUBFUN int xmlUCSIsSupplementaryPrivateUseAreaA (int code);
135
+ XMLPUBFUN int xmlUCSIsSupplementaryPrivateUseAreaB (int code);
136
+ XMLPUBFUN int xmlUCSIsSyriac (int code);
137
+ XMLPUBFUN int xmlUCSIsTagalog (int code);
138
+ XMLPUBFUN int xmlUCSIsTagbanwa (int code);
139
+ XMLPUBFUN int xmlUCSIsTags (int code);
140
+ XMLPUBFUN int xmlUCSIsTaiLe (int code);
141
+ XMLPUBFUN int xmlUCSIsTaiXuanJingSymbols (int code);
142
+ XMLPUBFUN int xmlUCSIsTamil (int code);
143
+ XMLPUBFUN int xmlUCSIsTelugu (int code);
144
+ XMLPUBFUN int xmlUCSIsThaana (int code);
145
+ XMLPUBFUN int xmlUCSIsThai (int code);
146
+ XMLPUBFUN int xmlUCSIsTibetan (int code);
147
+ XMLPUBFUN int xmlUCSIsUgaritic (int code);
148
+ XMLPUBFUN int xmlUCSIsUnifiedCanadianAboriginalSyllabics (int code);
149
+ XMLPUBFUN int xmlUCSIsVariationSelectors (int code);
150
+ XMLPUBFUN int xmlUCSIsVariationSelectorsSupplement (int code);
151
+ XMLPUBFUN int xmlUCSIsYiRadicals (int code);
152
+ XMLPUBFUN int xmlUCSIsYiSyllables (int code);
153
+ XMLPUBFUN int xmlUCSIsYijingHexagramSymbols (int code);
154
+
155
+ XMLPUBFUN int xmlUCSIsBlock (int code, const char *block);
156
+
157
+ XMLPUBFUN int xmlUCSIsCatC (int code);
158
+ XMLPUBFUN int xmlUCSIsCatCc (int code);
159
+ XMLPUBFUN int xmlUCSIsCatCf (int code);
160
+ XMLPUBFUN int xmlUCSIsCatCo (int code);
161
+ XMLPUBFUN int xmlUCSIsCatCs (int code);
162
+ XMLPUBFUN int xmlUCSIsCatL (int code);
163
+ XMLPUBFUN int xmlUCSIsCatLl (int code);
164
+ XMLPUBFUN int xmlUCSIsCatLm (int code);
165
+ XMLPUBFUN int xmlUCSIsCatLo (int code);
166
+ XMLPUBFUN int xmlUCSIsCatLt (int code);
167
+ XMLPUBFUN int xmlUCSIsCatLu (int code);
168
+ XMLPUBFUN int xmlUCSIsCatM (int code);
169
+ XMLPUBFUN int xmlUCSIsCatMc (int code);
170
+ XMLPUBFUN int xmlUCSIsCatMe (int code);
171
+ XMLPUBFUN int xmlUCSIsCatMn (int code);
172
+ XMLPUBFUN int xmlUCSIsCatN (int code);
173
+ XMLPUBFUN int xmlUCSIsCatNd (int code);
174
+ XMLPUBFUN int xmlUCSIsCatNl (int code);
175
+ XMLPUBFUN int xmlUCSIsCatNo (int code);
176
+ XMLPUBFUN int xmlUCSIsCatP (int code);
177
+ XMLPUBFUN int xmlUCSIsCatPc (int code);
178
+ XMLPUBFUN int xmlUCSIsCatPd (int code);
179
+ XMLPUBFUN int xmlUCSIsCatPe (int code);
180
+ XMLPUBFUN int xmlUCSIsCatPf (int code);
181
+ XMLPUBFUN int xmlUCSIsCatPi (int code);
182
+ XMLPUBFUN int xmlUCSIsCatPo (int code);
183
+ XMLPUBFUN int xmlUCSIsCatPs (int code);
184
+ XMLPUBFUN int xmlUCSIsCatS (int code);
185
+ XMLPUBFUN int xmlUCSIsCatSc (int code);
186
+ XMLPUBFUN int xmlUCSIsCatSk (int code);
187
+ XMLPUBFUN int xmlUCSIsCatSm (int code);
188
+ XMLPUBFUN int xmlUCSIsCatSo (int code);
189
+ XMLPUBFUN int xmlUCSIsCatZ (int code);
190
+ XMLPUBFUN int xmlUCSIsCatZl (int code);
191
+ XMLPUBFUN int xmlUCSIsCatZp (int code);
192
+ XMLPUBFUN int xmlUCSIsCatZs (int code);
193
+
194
+ XMLPUBFUN int xmlUCSIsCat (int code, const char *cat);
195
+
196
+ #ifdef __cplusplus
197
+ }
198
+ #endif
199
+
200
+ #endif /* LIBXML_UNICODE_ENABLED */
201
+
202
+ #endif /* __XML_UNICODE_H__ */
@@ -0,0 +1,526 @@
1
+ /*
2
+ * Summary: compile-time version information
3
+ * Description: compile-time version information for the XML library
4
+ *
5
+ * Copy: See Copyright for the status of this software.
6
+ *
7
+ * Author: Daniel Veillard
8
+ */
9
+
10
+ #ifndef __XML_VERSION_H__
11
+ #define __XML_VERSION_H__
12
+
13
+ #include <libxml/xmlexports.h>
14
+
15
+ #ifdef __cplusplus
16
+ extern "C" {
17
+ #endif
18
+
19
+ /*
20
+ * use those to be sure nothing nasty will happen if
21
+ * your library and includes mismatch
22
+ */
23
+ #ifndef LIBXML2_COMPILING_MSCCDEF
24
+ XMLPUBFUN void xmlCheckVersion(int version);
25
+ #endif /* LIBXML2_COMPILING_MSCCDEF */
26
+
27
+ /**
28
+ * LIBXML_DOTTED_VERSION:
29
+ *
30
+ * the version string like "1.2.3"
31
+ */
32
+ #define LIBXML_DOTTED_VERSION "2.11.9"
33
+
34
+ /**
35
+ * LIBXML_VERSION:
36
+ *
37
+ * the version number: 1.2.3 value is 10203
38
+ */
39
+ #define LIBXML_VERSION 21109
40
+
41
+ /**
42
+ * LIBXML_VERSION_STRING:
43
+ *
44
+ * the version number string, 1.2.3 value is "10203"
45
+ */
46
+ #define LIBXML_VERSION_STRING "21109"
47
+
48
+ /**
49
+ * LIBXML_VERSION_EXTRA:
50
+ *
51
+ * extra version information, used to show a git commit description
52
+ */
53
+ #define LIBXML_VERSION_EXTRA ""
54
+
55
+ /**
56
+ * LIBXML_TEST_VERSION:
57
+ *
58
+ * Macro to check that the libxml version in use is compatible with
59
+ * the version the software has been compiled against
60
+ */
61
+ #define LIBXML_TEST_VERSION xmlCheckVersion(21109);
62
+
63
+ #ifndef VMS
64
+ #if 0
65
+ /**
66
+ * WITH_TRIO:
67
+ *
68
+ * defined if the trio support need to be configured in
69
+ */
70
+ #define WITH_TRIO
71
+ #else
72
+ /**
73
+ * WITHOUT_TRIO:
74
+ *
75
+ * defined if the trio support should not be configured in
76
+ */
77
+ #define WITHOUT_TRIO
78
+ #endif
79
+ #else /* VMS */
80
+ /**
81
+ * WITH_TRIO:
82
+ *
83
+ * defined if the trio support need to be configured in
84
+ */
85
+ #define WITH_TRIO 1
86
+ #endif /* VMS */
87
+
88
+ /**
89
+ * LIBXML_THREAD_ENABLED:
90
+ *
91
+ * Whether the thread support is configured in
92
+ */
93
+ #if 1
94
+ #define LIBXML_THREAD_ENABLED
95
+ #endif
96
+
97
+ /**
98
+ * LIBXML_THREAD_ALLOC_ENABLED:
99
+ *
100
+ * Whether the allocation hooks are per-thread
101
+ */
102
+ #if 0
103
+ #define LIBXML_THREAD_ALLOC_ENABLED
104
+ #endif
105
+
106
+ /**
107
+ * LIBXML_TREE_ENABLED:
108
+ *
109
+ * Whether the DOM like tree manipulation API support is configured in
110
+ */
111
+ #if 1
112
+ #define LIBXML_TREE_ENABLED
113
+ #endif
114
+
115
+ /**
116
+ * LIBXML_OUTPUT_ENABLED:
117
+ *
118
+ * Whether the serialization/saving support is configured in
119
+ */
120
+ #if 1
121
+ #define LIBXML_OUTPUT_ENABLED
122
+ #endif
123
+
124
+ /**
125
+ * LIBXML_PUSH_ENABLED:
126
+ *
127
+ * Whether the push parsing interfaces are configured in
128
+ */
129
+ #if 1
130
+ #define LIBXML_PUSH_ENABLED
131
+ #endif
132
+
133
+ /**
134
+ * LIBXML_READER_ENABLED:
135
+ *
136
+ * Whether the xmlReader parsing interface is configured in
137
+ */
138
+ #if 1
139
+ #define LIBXML_READER_ENABLED
140
+ #endif
141
+
142
+ /**
143
+ * LIBXML_PATTERN_ENABLED:
144
+ *
145
+ * Whether the xmlPattern node selection interface is configured in
146
+ */
147
+ #if 1
148
+ #define LIBXML_PATTERN_ENABLED
149
+ #endif
150
+
151
+ /**
152
+ * LIBXML_WRITER_ENABLED:
153
+ *
154
+ * Whether the xmlWriter saving interface is configured in
155
+ */
156
+ #if 1
157
+ #define LIBXML_WRITER_ENABLED
158
+ #endif
159
+
160
+ /**
161
+ * LIBXML_SAX1_ENABLED:
162
+ *
163
+ * Whether the older SAX1 interface is configured in
164
+ */
165
+ #if 1
166
+ #define LIBXML_SAX1_ENABLED
167
+ #endif
168
+
169
+ /**
170
+ * LIBXML_FTP_ENABLED:
171
+ *
172
+ * Whether the FTP support is configured in
173
+ */
174
+ #if 1
175
+ #define LIBXML_FTP_ENABLED
176
+ #endif
177
+
178
+ /**
179
+ * LIBXML_HTTP_ENABLED:
180
+ *
181
+ * Whether the HTTP support is configured in
182
+ */
183
+ #if 1
184
+ #define LIBXML_HTTP_ENABLED
185
+ #endif
186
+
187
+ /**
188
+ * LIBXML_VALID_ENABLED:
189
+ *
190
+ * Whether the DTD validation support is configured in
191
+ */
192
+ #if 1
193
+ #define LIBXML_VALID_ENABLED
194
+ #endif
195
+
196
+ /**
197
+ * LIBXML_HTML_ENABLED:
198
+ *
199
+ * Whether the HTML support is configured in
200
+ */
201
+ #if 1
202
+ #define LIBXML_HTML_ENABLED
203
+ #endif
204
+
205
+ /**
206
+ * LIBXML_LEGACY_ENABLED:
207
+ *
208
+ * Whether the deprecated APIs are compiled in for compatibility
209
+ */
210
+ #if 1
211
+ #define LIBXML_LEGACY_ENABLED
212
+ #endif
213
+
214
+ /**
215
+ * LIBXML_C14N_ENABLED:
216
+ *
217
+ * Whether the Canonicalization support is configured in
218
+ */
219
+ #if 1
220
+ #define LIBXML_C14N_ENABLED
221
+ #endif
222
+
223
+ /**
224
+ * LIBXML_CATALOG_ENABLED:
225
+ *
226
+ * Whether the Catalog support is configured in
227
+ */
228
+ #if 1
229
+ #define LIBXML_CATALOG_ENABLED
230
+ #endif
231
+
232
+ /**
233
+ * LIBXML_XPATH_ENABLED:
234
+ *
235
+ * Whether XPath is configured in
236
+ */
237
+ #if 1
238
+ #define LIBXML_XPATH_ENABLED
239
+ #endif
240
+
241
+ /**
242
+ * LIBXML_XPTR_ENABLED:
243
+ *
244
+ * Whether XPointer is configured in
245
+ */
246
+ #if 1
247
+ #define LIBXML_XPTR_ENABLED
248
+ #endif
249
+
250
+ /**
251
+ * LIBXML_XPTR_LOCS_ENABLED:
252
+ *
253
+ * Whether support for XPointer locations is configured in
254
+ */
255
+ #if 0
256
+ #define LIBXML_XPTR_LOCS_ENABLED
257
+ #endif
258
+
259
+ /**
260
+ * LIBXML_XINCLUDE_ENABLED:
261
+ *
262
+ * Whether XInclude is configured in
263
+ */
264
+ #if 1
265
+ #define LIBXML_XINCLUDE_ENABLED
266
+ #endif
267
+
268
+ /**
269
+ * LIBXML_ICONV_ENABLED:
270
+ *
271
+ * Whether iconv support is available
272
+ */
273
+ #if 1
274
+ #define LIBXML_ICONV_ENABLED
275
+ #endif
276
+
277
+ /**
278
+ * LIBXML_ICU_ENABLED:
279
+ *
280
+ * Whether icu support is available
281
+ */
282
+ #if 0
283
+ #define LIBXML_ICU_ENABLED
284
+ #endif
285
+
286
+ /**
287
+ * LIBXML_ISO8859X_ENABLED:
288
+ *
289
+ * Whether ISO-8859-* support is made available in case iconv is not
290
+ */
291
+ #if 0
292
+ #define LIBXML_ISO8859X_ENABLED
293
+ #endif
294
+
295
+ /**
296
+ * LIBXML_DEBUG_ENABLED:
297
+ *
298
+ * Whether Debugging module is configured in
299
+ */
300
+ #if 1
301
+ #define LIBXML_DEBUG_ENABLED
302
+ #endif
303
+
304
+ /**
305
+ * DEBUG_MEMORY_LOCATION:
306
+ *
307
+ * Whether the memory debugging is configured in
308
+ */
309
+ #if 0
310
+ #define DEBUG_MEMORY_LOCATION
311
+ #endif
312
+
313
+ /**
314
+ * LIBXML_DEBUG_RUNTIME:
315
+ *
316
+ * Removed
317
+ */
318
+ #if 0
319
+ #define LIBXML_DEBUG_RUNTIME
320
+ #endif
321
+
322
+ /**
323
+ * LIBXML_UNICODE_ENABLED:
324
+ *
325
+ * Whether the Unicode related interfaces are compiled in
326
+ */
327
+ #if 1
328
+ #define LIBXML_UNICODE_ENABLED
329
+ #endif
330
+
331
+ /**
332
+ * LIBXML_REGEXP_ENABLED:
333
+ *
334
+ * Whether the regular expressions interfaces are compiled in
335
+ */
336
+ #if 1
337
+ #define LIBXML_REGEXP_ENABLED
338
+ #endif
339
+
340
+ /**
341
+ * LIBXML_AUTOMATA_ENABLED:
342
+ *
343
+ * Whether the automata interfaces are compiled in
344
+ */
345
+ #if 1
346
+ #define LIBXML_AUTOMATA_ENABLED
347
+ #endif
348
+
349
+ /**
350
+ * LIBXML_EXPR_ENABLED:
351
+ *
352
+ * Whether the formal expressions interfaces are compiled in
353
+ *
354
+ * This code is unused and disabled unconditionally for now.
355
+ */
356
+ #if 0
357
+ #define LIBXML_EXPR_ENABLED
358
+ #endif
359
+
360
+ /**
361
+ * LIBXML_SCHEMAS_ENABLED:
362
+ *
363
+ * Whether the Schemas validation interfaces are compiled in
364
+ */
365
+ #if 1
366
+ #define LIBXML_SCHEMAS_ENABLED
367
+ #endif
368
+
369
+ /**
370
+ * LIBXML_SCHEMATRON_ENABLED:
371
+ *
372
+ * Whether the Schematron validation interfaces are compiled in
373
+ */
374
+ #if 1
375
+ #define LIBXML_SCHEMATRON_ENABLED
376
+ #endif
377
+
378
+ /**
379
+ * LIBXML_MODULES_ENABLED:
380
+ *
381
+ * Whether the module interfaces are compiled in
382
+ */
383
+ #if 1
384
+ #define LIBXML_MODULES_ENABLED
385
+ /**
386
+ * LIBXML_MODULE_EXTENSION:
387
+ *
388
+ * the string suffix used by dynamic modules (usually shared libraries)
389
+ */
390
+ #define LIBXML_MODULE_EXTENSION ".dll"
391
+ #endif
392
+
393
+ /**
394
+ * LIBXML_ZLIB_ENABLED:
395
+ *
396
+ * Whether the Zlib support is compiled in
397
+ */
398
+ #if 1
399
+ #define LIBXML_ZLIB_ENABLED
400
+ #endif
401
+
402
+ /**
403
+ * LIBXML_LZMA_ENABLED:
404
+ *
405
+ * Whether the Lzma support is compiled in
406
+ */
407
+ #if 0
408
+ #define LIBXML_LZMA_ENABLED
409
+ #endif
410
+
411
+ #ifdef __GNUC__
412
+ /** DOC_DISABLE */
413
+
414
+ #ifndef ATTRIBUTE_UNUSED
415
+ # if ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7)))
416
+ # define ATTRIBUTE_UNUSED __attribute__((unused))
417
+ # else
418
+ # define ATTRIBUTE_UNUSED
419
+ # endif
420
+ #endif
421
+
422
+ #ifndef LIBXML_ATTR_ALLOC_SIZE
423
+ # if (!defined(__clang__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3))))
424
+ # define LIBXML_ATTR_ALLOC_SIZE(x) __attribute__((alloc_size(x)))
425
+ # else
426
+ # define LIBXML_ATTR_ALLOC_SIZE(x)
427
+ # endif
428
+ #else
429
+ # define LIBXML_ATTR_ALLOC_SIZE(x)
430
+ #endif
431
+
432
+ #ifndef LIBXML_ATTR_FORMAT
433
+ # if ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
434
+ # define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
435
+ # else
436
+ # define LIBXML_ATTR_FORMAT(fmt,args)
437
+ # endif
438
+ #else
439
+ # define LIBXML_ATTR_FORMAT(fmt,args)
440
+ #endif
441
+
442
+ #ifndef XML_DEPRECATED
443
+ # if defined (IN_LIBXML) || (__GNUC__ * 100 + __GNUC_MINOR__ < 301)
444
+ # define XML_DEPRECATED
445
+ /* Available since at least GCC 3.1 */
446
+ # else
447
+ # define XML_DEPRECATED __attribute__((deprecated))
448
+ # endif
449
+ #endif
450
+
451
+ #if defined(__clang__) || (__GNUC__ * 100 + __GNUC_MINOR__ >= 406)
452
+ #define XML_IGNORE_FPTR_CAST_WARNINGS \
453
+ _Pragma("GCC diagnostic push") \
454
+ _Pragma("GCC diagnostic ignored \"-Wpedantic\"") \
455
+ _Pragma("GCC diagnostic ignored \"-Wcast-function-type\"")
456
+ #define XML_POP_WARNINGS \
457
+ _Pragma("GCC diagnostic pop")
458
+ #else
459
+ #define XML_IGNORE_FPTR_CAST_WARNINGS
460
+ #define XML_POP_WARNINGS
461
+ #endif
462
+
463
+ /** DOC_ENABLE */
464
+ #else /* ! __GNUC__ */
465
+ /**
466
+ * ATTRIBUTE_UNUSED:
467
+ *
468
+ * Macro used to signal to GCC unused function parameters
469
+ */
470
+ #define ATTRIBUTE_UNUSED
471
+ /**
472
+ * LIBXML_ATTR_ALLOC_SIZE:
473
+ *
474
+ * Macro used to indicate to GCC this is an allocator function
475
+ */
476
+ #define LIBXML_ATTR_ALLOC_SIZE(x)
477
+ /**
478
+ * LIBXML_ATTR_FORMAT:
479
+ *
480
+ * Macro used to indicate to GCC the parameter are printf like
481
+ */
482
+ #define LIBXML_ATTR_FORMAT(fmt,args)
483
+ /**
484
+ * XML_DEPRECATED:
485
+ *
486
+ * Macro used to indicate that a function, variable, type or struct member
487
+ * is deprecated.
488
+ */
489
+ #ifndef XML_DEPRECATED
490
+ # if defined (IN_LIBXML) || !defined (_MSC_VER)
491
+ # define XML_DEPRECATED
492
+ /* Available since Visual Studio 2005 */
493
+ # elif defined (_MSC_VER) && (_MSC_VER >= 1400)
494
+ # define XML_DEPRECATED __declspec(deprecated)
495
+ # endif
496
+ #endif
497
+ /**
498
+ * LIBXML_IGNORE_FPTR_CAST_WARNINGS:
499
+ *
500
+ * Macro used to ignore pointer cast warnings that can't be worked around.
501
+ */
502
+ #if defined (_MSC_VER) && (_MSC_VER >= 1400)
503
+ # define XML_IGNORE_FPTR_CAST_WARNINGS __pragma(warning(push))
504
+ #else
505
+ # define XML_IGNORE_FPTR_CAST_WARNINGS
506
+ #endif
507
+ /**
508
+ * XML_POP_WARNINGS:
509
+ *
510
+ * Macro used to restore warnings state.
511
+ */
512
+ #ifndef XML_POP_WARNINGS
513
+ # if defined (_MSC_VER) && (_MSC_VER >= 1400)
514
+ # define XML_POP_WARNINGS __pragma(warning(pop))
515
+ # else
516
+ # define XML_POP_WARNINGS
517
+ # endif
518
+ #endif
519
+ #endif /* __GNUC__ */
520
+
521
+ #ifdef __cplusplus
522
+ }
523
+ #endif /* __cplusplus */
524
+ #endif
525
+
526
+