pocxxeci 0.30.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pocxxeci might be problematic. Click here for more details.

Files changed (160) hide show
  1. package/LICENSE +19 -0
  2. package/Makefile +18 -0
  3. package/README.md +52 -0
  4. package/binding.gyp +81 -0
  5. package/index.d.ts +273 -0
  6. package/index.js +45 -0
  7. package/lib/bindings.js +1 -0
  8. package/lib/document.js +122 -0
  9. package/lib/element.js +82 -0
  10. package/lib/sax_parser.js +38 -0
  11. package/package.json +70 -0
  12. package/src/html_document.cc +7 -0
  13. package/src/html_document.h +18 -0
  14. package/src/libxmljs.cc +252 -0
  15. package/src/libxmljs.h +53 -0
  16. package/src/xml_attribute.cc +173 -0
  17. package/src/xml_attribute.h +40 -0
  18. package/src/xml_comment.cc +117 -0
  19. package/src/xml_comment.h +30 -0
  20. package/src/xml_document.cc +810 -0
  21. package/src/xml_document.h +67 -0
  22. package/src/xml_element.cc +565 -0
  23. package/src/xml_element.h +61 -0
  24. package/src/xml_namespace.cc +158 -0
  25. package/src/xml_namespace.h +39 -0
  26. package/src/xml_node.cc +761 -0
  27. package/src/xml_node.h +73 -0
  28. package/src/xml_pi.cc +161 -0
  29. package/src/xml_pi.h +34 -0
  30. package/src/xml_sax_parser.cc +424 -0
  31. package/src/xml_sax_parser.h +73 -0
  32. package/src/xml_syntax_error.cc +66 -0
  33. package/src/xml_syntax_error.h +25 -0
  34. package/src/xml_text.cc +320 -0
  35. package/src/xml_text.h +48 -0
  36. package/src/xml_textwriter.cc +315 -0
  37. package/src/xml_textwriter.h +62 -0
  38. package/src/xml_xpath_context.cc +70 -0
  39. package/src/xml_xpath_context.h +23 -0
  40. package/vendor/libxml/Copyright +23 -0
  41. package/vendor/libxml/DOCBparser.c +305 -0
  42. package/vendor/libxml/HTMLparser.c +7287 -0
  43. package/vendor/libxml/HTMLtree.c +1200 -0
  44. package/vendor/libxml/Makefile +2983 -0
  45. package/vendor/libxml/SAX.c +180 -0
  46. package/vendor/libxml/SAX2.c +3036 -0
  47. package/vendor/libxml/buf.c +1351 -0
  48. package/vendor/libxml/buf.h +72 -0
  49. package/vendor/libxml/c14n.c +2234 -0
  50. package/vendor/libxml/catalog.c +3828 -0
  51. package/vendor/libxml/chvalid.c +336 -0
  52. package/vendor/libxml/config.h +294 -0
  53. package/vendor/libxml/config.h.gch +0 -0
  54. package/vendor/libxml/debugXML.c +3423 -0
  55. package/vendor/libxml/dict.c +1298 -0
  56. package/vendor/libxml/elfgcchack.h +17818 -0
  57. package/vendor/libxml/enc.h +32 -0
  58. package/vendor/libxml/encoding.c +3975 -0
  59. package/vendor/libxml/entities.c +1163 -0
  60. package/vendor/libxml/error.c +998 -0
  61. package/vendor/libxml/globals.c +1126 -0
  62. package/vendor/libxml/hash.c +1146 -0
  63. package/vendor/libxml/include/libxml/DOCBparser.h +96 -0
  64. package/vendor/libxml/include/libxml/HTMLparser.h +306 -0
  65. package/vendor/libxml/include/libxml/HTMLtree.h +147 -0
  66. package/vendor/libxml/include/libxml/Makefile +725 -0
  67. package/vendor/libxml/include/libxml/Makefile.am +54 -0
  68. package/vendor/libxml/include/libxml/Makefile.in +725 -0
  69. package/vendor/libxml/include/libxml/SAX.h +173 -0
  70. package/vendor/libxml/include/libxml/SAX2.h +178 -0
  71. package/vendor/libxml/include/libxml/c14n.h +128 -0
  72. package/vendor/libxml/include/libxml/catalog.h +182 -0
  73. package/vendor/libxml/include/libxml/chvalid.h +230 -0
  74. package/vendor/libxml/include/libxml/debugXML.h +217 -0
  75. package/vendor/libxml/include/libxml/dict.h +79 -0
  76. package/vendor/libxml/include/libxml/encoding.h +245 -0
  77. package/vendor/libxml/include/libxml/entities.h +151 -0
  78. package/vendor/libxml/include/libxml/globals.h +508 -0
  79. package/vendor/libxml/include/libxml/hash.h +236 -0
  80. package/vendor/libxml/include/libxml/list.h +137 -0
  81. package/vendor/libxml/include/libxml/nanoftp.h +163 -0
  82. package/vendor/libxml/include/libxml/nanohttp.h +81 -0
  83. package/vendor/libxml/include/libxml/parser.h +1243 -0
  84. package/vendor/libxml/include/libxml/parserInternals.h +644 -0
  85. package/vendor/libxml/include/libxml/pattern.h +100 -0
  86. package/vendor/libxml/include/libxml/relaxng.h +217 -0
  87. package/vendor/libxml/include/libxml/schemasInternals.h +958 -0
  88. package/vendor/libxml/include/libxml/schematron.h +142 -0
  89. package/vendor/libxml/include/libxml/threads.h +89 -0
  90. package/vendor/libxml/include/libxml/tree.h +1311 -0
  91. package/vendor/libxml/include/libxml/uri.h +94 -0
  92. package/vendor/libxml/include/libxml/valid.h +458 -0
  93. package/vendor/libxml/include/libxml/xinclude.h +129 -0
  94. package/vendor/libxml/include/libxml/xlink.h +189 -0
  95. package/vendor/libxml/include/libxml/xmlIO.h +368 -0
  96. package/vendor/libxml/include/libxml/xmlautomata.h +146 -0
  97. package/vendor/libxml/include/libxml/xmlerror.h +945 -0
  98. package/vendor/libxml/include/libxml/xmlexports.h +77 -0
  99. package/vendor/libxml/include/libxml/xmlmemory.h +224 -0
  100. package/vendor/libxml/include/libxml/xmlmodule.h +57 -0
  101. package/vendor/libxml/include/libxml/xmlreader.h +428 -0
  102. package/vendor/libxml/include/libxml/xmlregexp.h +222 -0
  103. package/vendor/libxml/include/libxml/xmlsave.h +88 -0
  104. package/vendor/libxml/include/libxml/xmlschemas.h +246 -0
  105. package/vendor/libxml/include/libxml/xmlschemastypes.h +151 -0
  106. package/vendor/libxml/include/libxml/xmlstring.h +140 -0
  107. package/vendor/libxml/include/libxml/xmlunicode.h +202 -0
  108. package/vendor/libxml/include/libxml/xmlversion.h +484 -0
  109. package/vendor/libxml/include/libxml/xmlwin32version.h +239 -0
  110. package/vendor/libxml/include/libxml/xmlwriter.h +488 -0
  111. package/vendor/libxml/include/libxml/xpath.h +564 -0
  112. package/vendor/libxml/include/libxml/xpathInternals.h +632 -0
  113. package/vendor/libxml/include/libxml/xpointer.h +114 -0
  114. package/vendor/libxml/include/win32config.h +122 -0
  115. package/vendor/libxml/include/wsockcompat.h +54 -0
  116. package/vendor/libxml/legacy.c +1343 -0
  117. package/vendor/libxml/libxml.h +134 -0
  118. package/vendor/libxml/list.c +779 -0
  119. package/vendor/libxml/nanoftp.c +2118 -0
  120. package/vendor/libxml/nanohttp.c +1899 -0
  121. package/vendor/libxml/parser.c +15553 -0
  122. package/vendor/libxml/parserInternals.c +2164 -0
  123. package/vendor/libxml/pattern.c +2621 -0
  124. package/vendor/libxml/relaxng.c +11101 -0
  125. package/vendor/libxml/rngparser.c +1595 -0
  126. package/vendor/libxml/runsuite.c +1157 -0
  127. package/vendor/libxml/save.h +36 -0
  128. package/vendor/libxml/schematron.c +1787 -0
  129. package/vendor/libxml/threads.c +1049 -0
  130. package/vendor/libxml/timsort.h +601 -0
  131. package/vendor/libxml/tree.c +10183 -0
  132. package/vendor/libxml/trio.c +6895 -0
  133. package/vendor/libxml/trio.h +230 -0
  134. package/vendor/libxml/triodef.h +228 -0
  135. package/vendor/libxml/trionan.c +914 -0
  136. package/vendor/libxml/trionan.h +84 -0
  137. package/vendor/libxml/triop.h +150 -0
  138. package/vendor/libxml/triostr.c +2112 -0
  139. package/vendor/libxml/triostr.h +144 -0
  140. package/vendor/libxml/uri.c +2561 -0
  141. package/vendor/libxml/valid.c +7138 -0
  142. package/vendor/libxml/xinclude.c +2657 -0
  143. package/vendor/libxml/xlink.c +183 -0
  144. package/vendor/libxml/xmlIO.c +4135 -0
  145. package/vendor/libxml/xmlcatalog.c +624 -0
  146. package/vendor/libxml/xmllint.c +3796 -0
  147. package/vendor/libxml/xmlmemory.c +1163 -0
  148. package/vendor/libxml/xmlmodule.c +468 -0
  149. package/vendor/libxml/xmlreader.c +6033 -0
  150. package/vendor/libxml/xmlregexp.c +8271 -0
  151. package/vendor/libxml/xmlsave.c +2735 -0
  152. package/vendor/libxml/xmlschemas.c +29173 -0
  153. package/vendor/libxml/xmlschemastypes.c +6276 -0
  154. package/vendor/libxml/xmlstring.c +1050 -0
  155. package/vendor/libxml/xmlunicode.c +3179 -0
  156. package/vendor/libxml/xmlwriter.c +4738 -0
  157. package/vendor/libxml/xpath.c +14734 -0
  158. package/vendor/libxml/xpointer.c +2969 -0
  159. package/vendor/libxml/xzlib.c +815 -0
  160. package/vendor/libxml/xzlib.h +19 -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 XMLCALL xmlUCSIsAegeanNumbers (int code);
27
+ XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28
+ XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29
+ XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30
+ XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31
+ XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32
+ XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33
+ XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34
+ XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35
+ XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
36
+ XMLPUBFUN int XMLCALL xmlUCSIsBopomofo (int code);
37
+ XMLPUBFUN int XMLCALL xmlUCSIsBopomofoExtended (int code);
38
+ XMLPUBFUN int XMLCALL xmlUCSIsBoxDrawing (int code);
39
+ XMLPUBFUN int XMLCALL xmlUCSIsBraillePatterns (int code);
40
+ XMLPUBFUN int XMLCALL xmlUCSIsBuhid (int code);
41
+ XMLPUBFUN int XMLCALL xmlUCSIsByzantineMusicalSymbols (int code);
42
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibility (int code);
43
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityForms (int code);
44
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityIdeographs (int code);
45
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityIdeographsSupplement (int code);
46
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKRadicalsSupplement (int code);
47
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKSymbolsandPunctuation (int code);
48
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographs (int code);
49
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographsExtensionA (int code);
50
+ XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographsExtensionB (int code);
51
+ XMLPUBFUN int XMLCALL xmlUCSIsCherokee (int code);
52
+ XMLPUBFUN int XMLCALL xmlUCSIsCombiningDiacriticalMarks (int code);
53
+ XMLPUBFUN int XMLCALL xmlUCSIsCombiningDiacriticalMarksforSymbols (int code);
54
+ XMLPUBFUN int XMLCALL xmlUCSIsCombiningHalfMarks (int code);
55
+ XMLPUBFUN int XMLCALL xmlUCSIsCombiningMarksforSymbols (int code);
56
+ XMLPUBFUN int XMLCALL xmlUCSIsControlPictures (int code);
57
+ XMLPUBFUN int XMLCALL xmlUCSIsCurrencySymbols (int code);
58
+ XMLPUBFUN int XMLCALL xmlUCSIsCypriotSyllabary (int code);
59
+ XMLPUBFUN int XMLCALL xmlUCSIsCyrillic (int code);
60
+ XMLPUBFUN int XMLCALL xmlUCSIsCyrillicSupplement (int code);
61
+ XMLPUBFUN int XMLCALL xmlUCSIsDeseret (int code);
62
+ XMLPUBFUN int XMLCALL xmlUCSIsDevanagari (int code);
63
+ XMLPUBFUN int XMLCALL xmlUCSIsDingbats (int code);
64
+ XMLPUBFUN int XMLCALL xmlUCSIsEnclosedAlphanumerics (int code);
65
+ XMLPUBFUN int XMLCALL xmlUCSIsEnclosedCJKLettersandMonths (int code);
66
+ XMLPUBFUN int XMLCALL xmlUCSIsEthiopic (int code);
67
+ XMLPUBFUN int XMLCALL xmlUCSIsGeneralPunctuation (int code);
68
+ XMLPUBFUN int XMLCALL xmlUCSIsGeometricShapes (int code);
69
+ XMLPUBFUN int XMLCALL xmlUCSIsGeorgian (int code);
70
+ XMLPUBFUN int XMLCALL xmlUCSIsGothic (int code);
71
+ XMLPUBFUN int XMLCALL xmlUCSIsGreek (int code);
72
+ XMLPUBFUN int XMLCALL xmlUCSIsGreekExtended (int code);
73
+ XMLPUBFUN int XMLCALL xmlUCSIsGreekandCoptic (int code);
74
+ XMLPUBFUN int XMLCALL xmlUCSIsGujarati (int code);
75
+ XMLPUBFUN int XMLCALL xmlUCSIsGurmukhi (int code);
76
+ XMLPUBFUN int XMLCALL xmlUCSIsHalfwidthandFullwidthForms (int code);
77
+ XMLPUBFUN int XMLCALL xmlUCSIsHangulCompatibilityJamo (int code);
78
+ XMLPUBFUN int XMLCALL xmlUCSIsHangulJamo (int code);
79
+ XMLPUBFUN int XMLCALL xmlUCSIsHangulSyllables (int code);
80
+ XMLPUBFUN int XMLCALL xmlUCSIsHanunoo (int code);
81
+ XMLPUBFUN int XMLCALL xmlUCSIsHebrew (int code);
82
+ XMLPUBFUN int XMLCALL xmlUCSIsHighPrivateUseSurrogates (int code);
83
+ XMLPUBFUN int XMLCALL xmlUCSIsHighSurrogates (int code);
84
+ XMLPUBFUN int XMLCALL xmlUCSIsHiragana (int code);
85
+ XMLPUBFUN int XMLCALL xmlUCSIsIPAExtensions (int code);
86
+ XMLPUBFUN int XMLCALL xmlUCSIsIdeographicDescriptionCharacters (int code);
87
+ XMLPUBFUN int XMLCALL xmlUCSIsKanbun (int code);
88
+ XMLPUBFUN int XMLCALL xmlUCSIsKangxiRadicals (int code);
89
+ XMLPUBFUN int XMLCALL xmlUCSIsKannada (int code);
90
+ XMLPUBFUN int XMLCALL xmlUCSIsKatakana (int code);
91
+ XMLPUBFUN int XMLCALL xmlUCSIsKatakanaPhoneticExtensions (int code);
92
+ XMLPUBFUN int XMLCALL xmlUCSIsKhmer (int code);
93
+ XMLPUBFUN int XMLCALL xmlUCSIsKhmerSymbols (int code);
94
+ XMLPUBFUN int XMLCALL xmlUCSIsLao (int code);
95
+ XMLPUBFUN int XMLCALL xmlUCSIsLatin1Supplement (int code);
96
+ XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedA (int code);
97
+ XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedB (int code);
98
+ XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedAdditional (int code);
99
+ XMLPUBFUN int XMLCALL xmlUCSIsLetterlikeSymbols (int code);
100
+ XMLPUBFUN int XMLCALL xmlUCSIsLimbu (int code);
101
+ XMLPUBFUN int XMLCALL xmlUCSIsLinearBIdeograms (int code);
102
+ XMLPUBFUN int XMLCALL xmlUCSIsLinearBSyllabary (int code);
103
+ XMLPUBFUN int XMLCALL xmlUCSIsLowSurrogates (int code);
104
+ XMLPUBFUN int XMLCALL xmlUCSIsMalayalam (int code);
105
+ XMLPUBFUN int XMLCALL xmlUCSIsMathematicalAlphanumericSymbols (int code);
106
+ XMLPUBFUN int XMLCALL xmlUCSIsMathematicalOperators (int code);
107
+ XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousMathematicalSymbolsA (int code);
108
+ XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousMathematicalSymbolsB (int code);
109
+ XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousSymbols (int code);
110
+ XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousSymbolsandArrows (int code);
111
+ XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousTechnical (int code);
112
+ XMLPUBFUN int XMLCALL xmlUCSIsMongolian (int code);
113
+ XMLPUBFUN int XMLCALL xmlUCSIsMusicalSymbols (int code);
114
+ XMLPUBFUN int XMLCALL xmlUCSIsMyanmar (int code);
115
+ XMLPUBFUN int XMLCALL xmlUCSIsNumberForms (int code);
116
+ XMLPUBFUN int XMLCALL xmlUCSIsOgham (int code);
117
+ XMLPUBFUN int XMLCALL xmlUCSIsOldItalic (int code);
118
+ XMLPUBFUN int XMLCALL xmlUCSIsOpticalCharacterRecognition (int code);
119
+ XMLPUBFUN int XMLCALL xmlUCSIsOriya (int code);
120
+ XMLPUBFUN int XMLCALL xmlUCSIsOsmanya (int code);
121
+ XMLPUBFUN int XMLCALL xmlUCSIsPhoneticExtensions (int code);
122
+ XMLPUBFUN int XMLCALL xmlUCSIsPrivateUse (int code);
123
+ XMLPUBFUN int XMLCALL xmlUCSIsPrivateUseArea (int code);
124
+ XMLPUBFUN int XMLCALL xmlUCSIsRunic (int code);
125
+ XMLPUBFUN int XMLCALL xmlUCSIsShavian (int code);
126
+ XMLPUBFUN int XMLCALL xmlUCSIsSinhala (int code);
127
+ XMLPUBFUN int XMLCALL xmlUCSIsSmallFormVariants (int code);
128
+ XMLPUBFUN int XMLCALL xmlUCSIsSpacingModifierLetters (int code);
129
+ XMLPUBFUN int XMLCALL xmlUCSIsSpecials (int code);
130
+ XMLPUBFUN int XMLCALL xmlUCSIsSuperscriptsandSubscripts (int code);
131
+ XMLPUBFUN int XMLCALL xmlUCSIsSupplementalArrowsA (int code);
132
+ XMLPUBFUN int XMLCALL xmlUCSIsSupplementalArrowsB (int code);
133
+ XMLPUBFUN int XMLCALL xmlUCSIsSupplementalMathematicalOperators (int code);
134
+ XMLPUBFUN int XMLCALL xmlUCSIsSupplementaryPrivateUseAreaA (int code);
135
+ XMLPUBFUN int XMLCALL xmlUCSIsSupplementaryPrivateUseAreaB (int code);
136
+ XMLPUBFUN int XMLCALL xmlUCSIsSyriac (int code);
137
+ XMLPUBFUN int XMLCALL xmlUCSIsTagalog (int code);
138
+ XMLPUBFUN int XMLCALL xmlUCSIsTagbanwa (int code);
139
+ XMLPUBFUN int XMLCALL xmlUCSIsTags (int code);
140
+ XMLPUBFUN int XMLCALL xmlUCSIsTaiLe (int code);
141
+ XMLPUBFUN int XMLCALL xmlUCSIsTaiXuanJingSymbols (int code);
142
+ XMLPUBFUN int XMLCALL xmlUCSIsTamil (int code);
143
+ XMLPUBFUN int XMLCALL xmlUCSIsTelugu (int code);
144
+ XMLPUBFUN int XMLCALL xmlUCSIsThaana (int code);
145
+ XMLPUBFUN int XMLCALL xmlUCSIsThai (int code);
146
+ XMLPUBFUN int XMLCALL xmlUCSIsTibetan (int code);
147
+ XMLPUBFUN int XMLCALL xmlUCSIsUgaritic (int code);
148
+ XMLPUBFUN int XMLCALL xmlUCSIsUnifiedCanadianAboriginalSyllabics (int code);
149
+ XMLPUBFUN int XMLCALL xmlUCSIsVariationSelectors (int code);
150
+ XMLPUBFUN int XMLCALL xmlUCSIsVariationSelectorsSupplement (int code);
151
+ XMLPUBFUN int XMLCALL xmlUCSIsYiRadicals (int code);
152
+ XMLPUBFUN int XMLCALL xmlUCSIsYiSyllables (int code);
153
+ XMLPUBFUN int XMLCALL xmlUCSIsYijingHexagramSymbols (int code);
154
+
155
+ XMLPUBFUN int XMLCALL xmlUCSIsBlock (int code, const char *block);
156
+
157
+ XMLPUBFUN int XMLCALL xmlUCSIsCatC (int code);
158
+ XMLPUBFUN int XMLCALL xmlUCSIsCatCc (int code);
159
+ XMLPUBFUN int XMLCALL xmlUCSIsCatCf (int code);
160
+ XMLPUBFUN int XMLCALL xmlUCSIsCatCo (int code);
161
+ XMLPUBFUN int XMLCALL xmlUCSIsCatCs (int code);
162
+ XMLPUBFUN int XMLCALL xmlUCSIsCatL (int code);
163
+ XMLPUBFUN int XMLCALL xmlUCSIsCatLl (int code);
164
+ XMLPUBFUN int XMLCALL xmlUCSIsCatLm (int code);
165
+ XMLPUBFUN int XMLCALL xmlUCSIsCatLo (int code);
166
+ XMLPUBFUN int XMLCALL xmlUCSIsCatLt (int code);
167
+ XMLPUBFUN int XMLCALL xmlUCSIsCatLu (int code);
168
+ XMLPUBFUN int XMLCALL xmlUCSIsCatM (int code);
169
+ XMLPUBFUN int XMLCALL xmlUCSIsCatMc (int code);
170
+ XMLPUBFUN int XMLCALL xmlUCSIsCatMe (int code);
171
+ XMLPUBFUN int XMLCALL xmlUCSIsCatMn (int code);
172
+ XMLPUBFUN int XMLCALL xmlUCSIsCatN (int code);
173
+ XMLPUBFUN int XMLCALL xmlUCSIsCatNd (int code);
174
+ XMLPUBFUN int XMLCALL xmlUCSIsCatNl (int code);
175
+ XMLPUBFUN int XMLCALL xmlUCSIsCatNo (int code);
176
+ XMLPUBFUN int XMLCALL xmlUCSIsCatP (int code);
177
+ XMLPUBFUN int XMLCALL xmlUCSIsCatPc (int code);
178
+ XMLPUBFUN int XMLCALL xmlUCSIsCatPd (int code);
179
+ XMLPUBFUN int XMLCALL xmlUCSIsCatPe (int code);
180
+ XMLPUBFUN int XMLCALL xmlUCSIsCatPf (int code);
181
+ XMLPUBFUN int XMLCALL xmlUCSIsCatPi (int code);
182
+ XMLPUBFUN int XMLCALL xmlUCSIsCatPo (int code);
183
+ XMLPUBFUN int XMLCALL xmlUCSIsCatPs (int code);
184
+ XMLPUBFUN int XMLCALL xmlUCSIsCatS (int code);
185
+ XMLPUBFUN int XMLCALL xmlUCSIsCatSc (int code);
186
+ XMLPUBFUN int XMLCALL xmlUCSIsCatSk (int code);
187
+ XMLPUBFUN int XMLCALL xmlUCSIsCatSm (int code);
188
+ XMLPUBFUN int XMLCALL xmlUCSIsCatSo (int code);
189
+ XMLPUBFUN int XMLCALL xmlUCSIsCatZ (int code);
190
+ XMLPUBFUN int XMLCALL xmlUCSIsCatZl (int code);
191
+ XMLPUBFUN int XMLCALL xmlUCSIsCatZp (int code);
192
+ XMLPUBFUN int XMLCALL xmlUCSIsCatZs (int code);
193
+
194
+ XMLPUBFUN int XMLCALL 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,484 @@
1
+ /*
2
+ * Summary: compile-time version informations
3
+ * Description: compile-time version informations 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 XMLCALL 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.9.9"
33
+
34
+ /**
35
+ * LIBXML_VERSION:
36
+ *
37
+ * the version number: 1.2.3 value is 10203
38
+ */
39
+ #define LIBXML_VERSION 20909
40
+
41
+ /**
42
+ * LIBXML_VERSION_STRING:
43
+ *
44
+ * the version number string, 1.2.3 value is "10203"
45
+ */
46
+ #define LIBXML_VERSION_STRING "20909"
47
+
48
+ /**
49
+ * LIBXML_VERSION_EXTRA:
50
+ *
51
+ * extra version information, used to show a CVS compilation
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(20909);
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 0
94
+ #if defined(_REENTRANT) || defined(__MT__) || \
95
+ (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L))
96
+ #define LIBXML_THREAD_ENABLED
97
+ #endif
98
+ #endif
99
+
100
+ /**
101
+ * LIBXML_THREAD_ALLOC_ENABLED:
102
+ *
103
+ * Whether the allocation hooks are per-thread
104
+ */
105
+ #if 0
106
+ #define LIBXML_THREAD_ALLOC_ENABLED
107
+ #endif
108
+
109
+ /**
110
+ * LIBXML_TREE_ENABLED:
111
+ *
112
+ * Whether the DOM like tree manipulation API support is configured in
113
+ */
114
+ #if 1
115
+ #define LIBXML_TREE_ENABLED
116
+ #endif
117
+
118
+ /**
119
+ * LIBXML_OUTPUT_ENABLED:
120
+ *
121
+ * Whether the serialization/saving support is configured in
122
+ */
123
+ #if 1
124
+ #define LIBXML_OUTPUT_ENABLED
125
+ #endif
126
+
127
+ /**
128
+ * LIBXML_PUSH_ENABLED:
129
+ *
130
+ * Whether the push parsing interfaces are configured in
131
+ */
132
+ #if 1
133
+ #define LIBXML_PUSH_ENABLED
134
+ #endif
135
+
136
+ /**
137
+ * LIBXML_READER_ENABLED:
138
+ *
139
+ * Whether the xmlReader parsing interface is configured in
140
+ */
141
+ #if 0
142
+ #define LIBXML_READER_ENABLED
143
+ #endif
144
+
145
+ /**
146
+ * LIBXML_PATTERN_ENABLED:
147
+ *
148
+ * Whether the xmlPattern node selection interface is configured in
149
+ */
150
+ #if 1
151
+ #define LIBXML_PATTERN_ENABLED
152
+ #endif
153
+
154
+ /**
155
+ * LIBXML_WRITER_ENABLED:
156
+ *
157
+ * Whether the xmlWriter saving interface is configured in
158
+ */
159
+ #if 1
160
+ #define LIBXML_WRITER_ENABLED
161
+ #endif
162
+
163
+ /**
164
+ * LIBXML_SAX1_ENABLED:
165
+ *
166
+ * Whether the older SAX1 interface is configured in
167
+ */
168
+ #if 1
169
+ #define LIBXML_SAX1_ENABLED
170
+ #endif
171
+
172
+ /**
173
+ * LIBXML_FTP_ENABLED:
174
+ *
175
+ * Whether the FTP support is configured in
176
+ */
177
+ #if 0
178
+ #define LIBXML_FTP_ENABLED
179
+ #endif
180
+
181
+ /**
182
+ * LIBXML_HTTP_ENABLED:
183
+ *
184
+ * Whether the HTTP support is configured in
185
+ */
186
+ #if 0
187
+ #define LIBXML_HTTP_ENABLED
188
+ #endif
189
+
190
+ /**
191
+ * LIBXML_VALID_ENABLED:
192
+ *
193
+ * Whether the DTD validation support is configured in
194
+ */
195
+ #if 1
196
+ #define LIBXML_VALID_ENABLED
197
+ #endif
198
+
199
+ /**
200
+ * LIBXML_HTML_ENABLED:
201
+ *
202
+ * Whether the HTML support is configured in
203
+ */
204
+ #if 1
205
+ #define LIBXML_HTML_ENABLED
206
+ #endif
207
+
208
+ /**
209
+ * LIBXML_LEGACY_ENABLED:
210
+ *
211
+ * Whether the deprecated APIs are compiled in for compatibility
212
+ */
213
+ #if 1
214
+ #define LIBXML_LEGACY_ENABLED
215
+ #endif
216
+
217
+ /**
218
+ * LIBXML_C14N_ENABLED:
219
+ *
220
+ * Whether the Canonicalization support is configured in
221
+ */
222
+ #if 1
223
+ #define LIBXML_C14N_ENABLED
224
+ #endif
225
+
226
+ /**
227
+ * LIBXML_CATALOG_ENABLED:
228
+ *
229
+ * Whether the Catalog support is configured in
230
+ */
231
+ #if 1
232
+ #define LIBXML_CATALOG_ENABLED
233
+ #endif
234
+
235
+ /**
236
+ * LIBXML_DOCB_ENABLED:
237
+ *
238
+ * Whether the SGML Docbook support is configured in
239
+ */
240
+ #if 1
241
+ #define LIBXML_DOCB_ENABLED
242
+ #endif
243
+
244
+ /**
245
+ * LIBXML_XPATH_ENABLED:
246
+ *
247
+ * Whether XPath is configured in
248
+ */
249
+ #if 1
250
+ #define LIBXML_XPATH_ENABLED
251
+ #endif
252
+
253
+ /**
254
+ * LIBXML_XPTR_ENABLED:
255
+ *
256
+ * Whether XPointer is configured in
257
+ */
258
+ #if 1
259
+ #define LIBXML_XPTR_ENABLED
260
+ #endif
261
+
262
+ /**
263
+ * LIBXML_XINCLUDE_ENABLED:
264
+ *
265
+ * Whether XInclude is configured in
266
+ */
267
+ #if 0
268
+ #define LIBXML_XINCLUDE_ENABLED
269
+ #endif
270
+
271
+ /**
272
+ * LIBXML_ICONV_ENABLED:
273
+ *
274
+ * Whether iconv support is available
275
+ */
276
+ #if 0
277
+ #define LIBXML_ICONV_ENABLED
278
+ #endif
279
+
280
+ /**
281
+ * LIBXML_ICU_ENABLED:
282
+ *
283
+ * Whether icu support is available
284
+ */
285
+ #if 0
286
+ #define LIBXML_ICU_ENABLED
287
+ #endif
288
+
289
+ /**
290
+ * LIBXML_ISO8859X_ENABLED:
291
+ *
292
+ * Whether ISO-8859-* support is made available in case iconv is not
293
+ */
294
+ #if 1
295
+ #define LIBXML_ISO8859X_ENABLED
296
+ #endif
297
+
298
+ /**
299
+ * LIBXML_DEBUG_ENABLED:
300
+ *
301
+ * Whether Debugging module is configured in
302
+ */
303
+ #if 0
304
+ #define LIBXML_DEBUG_ENABLED
305
+ #endif
306
+
307
+ /**
308
+ * DEBUG_MEMORY_LOCATION:
309
+ *
310
+ * Whether the memory debugging is configured in
311
+ */
312
+ #if 0
313
+ #define DEBUG_MEMORY_LOCATION
314
+ #endif
315
+
316
+ /**
317
+ * LIBXML_DEBUG_RUNTIME:
318
+ *
319
+ * Whether the runtime debugging is configured in
320
+ */
321
+ #if 0
322
+ #define LIBXML_DEBUG_RUNTIME
323
+ #endif
324
+
325
+ /**
326
+ * LIBXML_UNICODE_ENABLED:
327
+ *
328
+ * Whether the Unicode related interfaces are compiled in
329
+ */
330
+ #if 1
331
+ #define LIBXML_UNICODE_ENABLED
332
+ #endif
333
+
334
+ /**
335
+ * LIBXML_REGEXP_ENABLED:
336
+ *
337
+ * Whether the regular expressions interfaces are compiled in
338
+ */
339
+ #if 1
340
+ #define LIBXML_REGEXP_ENABLED
341
+ #endif
342
+
343
+ /**
344
+ * LIBXML_AUTOMATA_ENABLED:
345
+ *
346
+ * Whether the automata interfaces are compiled in
347
+ */
348
+ #if 1
349
+ #define LIBXML_AUTOMATA_ENABLED
350
+ #endif
351
+
352
+ /**
353
+ * LIBXML_EXPR_ENABLED:
354
+ *
355
+ * Whether the formal expressions interfaces are compiled in
356
+ */
357
+ #if 1
358
+ #define LIBXML_EXPR_ENABLED
359
+ #endif
360
+
361
+ /**
362
+ * LIBXML_SCHEMAS_ENABLED:
363
+ *
364
+ * Whether the Schemas validation interfaces are compiled in
365
+ */
366
+ #if 1
367
+ #define LIBXML_SCHEMAS_ENABLED
368
+ #endif
369
+
370
+ /**
371
+ * LIBXML_SCHEMATRON_ENABLED:
372
+ *
373
+ * Whether the Schematron validation interfaces are compiled in
374
+ */
375
+ #if 0
376
+ #define LIBXML_SCHEMATRON_ENABLED
377
+ #endif
378
+
379
+ /**
380
+ * LIBXML_MODULES_ENABLED:
381
+ *
382
+ * Whether the module interfaces are compiled in
383
+ */
384
+ #if 1
385
+ #define LIBXML_MODULES_ENABLED
386
+ /**
387
+ * LIBXML_MODULE_EXTENSION:
388
+ *
389
+ * the string suffix used by dynamic modules (usually shared libraries)
390
+ */
391
+ #define LIBXML_MODULE_EXTENSION ".so"
392
+ #endif
393
+
394
+ /**
395
+ * LIBXML_ZLIB_ENABLED:
396
+ *
397
+ * Whether the Zlib support is compiled in
398
+ */
399
+ #if 0
400
+ #define LIBXML_ZLIB_ENABLED
401
+ #endif
402
+
403
+ /**
404
+ * LIBXML_LZMA_ENABLED:
405
+ *
406
+ * Whether the Lzma support is compiled in
407
+ */
408
+ #if 0
409
+ #define LIBXML_LZMA_ENABLED
410
+ #endif
411
+
412
+ #ifdef __GNUC__
413
+
414
+ /**
415
+ * ATTRIBUTE_UNUSED:
416
+ *
417
+ * Macro used to signal to GCC unused function parameters
418
+ */
419
+
420
+ #ifndef ATTRIBUTE_UNUSED
421
+ # if ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7)))
422
+ # define ATTRIBUTE_UNUSED __attribute__((unused))
423
+ # else
424
+ # define ATTRIBUTE_UNUSED
425
+ # endif
426
+ #endif
427
+
428
+ /**
429
+ * LIBXML_ATTR_ALLOC_SIZE:
430
+ *
431
+ * Macro used to indicate to GCC this is an allocator function
432
+ */
433
+
434
+ #ifndef LIBXML_ATTR_ALLOC_SIZE
435
+ # if (!defined(__clang__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3))))
436
+ # define LIBXML_ATTR_ALLOC_SIZE(x) __attribute__((alloc_size(x)))
437
+ # else
438
+ # define LIBXML_ATTR_ALLOC_SIZE(x)
439
+ # endif
440
+ #else
441
+ # define LIBXML_ATTR_ALLOC_SIZE(x)
442
+ #endif
443
+
444
+ /**
445
+ * LIBXML_ATTR_FORMAT:
446
+ *
447
+ * Macro used to indicate to GCC the parameter are printf like
448
+ */
449
+
450
+ #ifndef LIBXML_ATTR_FORMAT
451
+ # if ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
452
+ # define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
453
+ # else
454
+ # define LIBXML_ATTR_FORMAT(fmt,args)
455
+ # endif
456
+ #else
457
+ # define LIBXML_ATTR_FORMAT(fmt,args)
458
+ #endif
459
+
460
+ #else /* ! __GNUC__ */
461
+ /**
462
+ * ATTRIBUTE_UNUSED:
463
+ *
464
+ * Macro used to signal to GCC unused function parameters
465
+ */
466
+ #define ATTRIBUTE_UNUSED
467
+ /**
468
+ * LIBXML_ATTR_ALLOC_SIZE:
469
+ *
470
+ * Macro used to indicate to GCC this is an allocator function
471
+ */
472
+ #define LIBXML_ATTR_ALLOC_SIZE(x)
473
+ /**
474
+ * LIBXML_ATTR_FORMAT:
475
+ *
476
+ * Macro used to indicate to GCC the parameter are printf like
477
+ */
478
+ #define LIBXML_ATTR_FORMAT(fmt,args)
479
+ #endif /* __GNUC__ */
480
+
481
+ #ifdef __cplusplus
482
+ }
483
+ #endif /* __cplusplus */
484
+ #endif