lxml 5.4.0__cp313-cp313-macosx_10_13_universal2.whl → 6.0.0__cp313-cp313-macosx_10_13_universal2.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 (74) hide show
  1. lxml/__init__.py +1 -1
  2. lxml/_elementpath.cpython-313-darwin.so +0 -0
  3. lxml/_elementpath.py +3 -1
  4. lxml/apihelpers.pxi +25 -17
  5. lxml/builder.cpython-313-darwin.so +0 -0
  6. lxml/builder.py +11 -0
  7. lxml/debug.pxi +0 -54
  8. lxml/etree.cpython-313-darwin.so +0 -0
  9. lxml/etree.h +24 -28
  10. lxml/etree.pyx +154 -33
  11. lxml/etree_api.h +59 -50
  12. lxml/extensions.pxi +3 -6
  13. lxml/html/__init__.py +7 -3
  14. lxml/html/_difflib.cpython-313-darwin.so +0 -0
  15. lxml/html/_difflib.py +2106 -0
  16. lxml/html/builder.py +40 -0
  17. lxml/html/defs.py +3 -3
  18. lxml/html/diff.cpython-313-darwin.so +0 -0
  19. lxml/html/diff.py +406 -312
  20. lxml/includes/etree_defs.h +6 -6
  21. lxml/includes/libxml/HTMLparser.h +33 -30
  22. lxml/includes/libxml/HTMLtree.h +1 -0
  23. lxml/includes/libxml/SAX.h +2 -186
  24. lxml/includes/libxml/SAX2.h +2 -3
  25. lxml/includes/libxml/catalog.h +1 -0
  26. lxml/includes/libxml/debugXML.h +0 -138
  27. lxml/includes/libxml/encoding.h +124 -61
  28. lxml/includes/libxml/entities.h +0 -19
  29. lxml/includes/libxml/globals.h +0 -16
  30. lxml/includes/libxml/nanoftp.h +3 -173
  31. lxml/includes/libxml/parser.h +474 -231
  32. lxml/includes/libxml/parserInternals.h +21 -101
  33. lxml/includes/libxml/relaxng.h +7 -2
  34. lxml/includes/libxml/threads.h +0 -6
  35. lxml/includes/libxml/tree.h +29 -85
  36. lxml/includes/libxml/valid.h +20 -12
  37. lxml/includes/libxml/xinclude.h +5 -0
  38. lxml/includes/libxml/xlink.h +4 -0
  39. lxml/includes/libxml/xmlIO.h +15 -34
  40. lxml/includes/libxml/xmlautomata.h +19 -2
  41. lxml/includes/libxml/xmlerror.h +18 -18
  42. lxml/includes/libxml/xmlexports.h +6 -56
  43. lxml/includes/libxml/xmlmemory.h +19 -19
  44. lxml/includes/libxml/xmlmodule.h +4 -0
  45. lxml/includes/libxml/xmlreader.h +11 -3
  46. lxml/includes/libxml/xmlregexp.h +7 -106
  47. lxml/includes/libxml/xmlsave.h +11 -2
  48. lxml/includes/libxml/xmlschemas.h +10 -5
  49. lxml/includes/libxml/xmlunicode.h +3 -354
  50. lxml/includes/libxml/xmlversion.h +19 -34
  51. lxml/includes/libxml/xpath.h +5 -15
  52. lxml/includes/libxml/xpathInternals.h +9 -3
  53. lxml/includes/libxml/xpointer.h +1 -91
  54. lxml/includes/lxml-version.h +1 -1
  55. lxml/includes/tree.pxd +10 -12
  56. lxml/includes/xmlparser.pxd +46 -8
  57. lxml/lxml.etree.h +24 -28
  58. lxml/lxml.etree_api.h +59 -50
  59. lxml/objectify.cpython-313-darwin.so +0 -0
  60. lxml/objectify.pyx +11 -7
  61. lxml/parser.pxi +106 -47
  62. lxml/sax.cpython-313-darwin.so +0 -0
  63. lxml/sax.py +11 -0
  64. lxml/saxparser.pxi +14 -14
  65. lxml/schematron.pxi +8 -3
  66. lxml/serializer.pxi +71 -3
  67. lxml/xslt.pxi +10 -3
  68. lxml-6.0.0.dist-info/METADATA +163 -0
  69. {lxml-5.4.0.dist-info → lxml-6.0.0.dist-info}/RECORD +73 -71
  70. {lxml-5.4.0.dist-info → lxml-6.0.0.dist-info}/WHEEL +2 -1
  71. {lxml-5.4.0.dist-info → lxml-6.0.0.dist-info}/licenses/LICENSE.txt +3 -1
  72. lxml-5.4.0.dist-info/METADATA +0 -96
  73. {lxml-5.4.0.dist-info → lxml-6.0.0.dist-info}/licenses/LICENSES.txt +0 -0
  74. {lxml-5.4.0.dist-info → lxml-6.0.0.dist-info}/top_level.txt +0 -0
@@ -47,6 +47,7 @@ XMLPUBFUN void xmlRegFreeRegexp(xmlRegexpPtr regexp);
47
47
  XMLPUBFUN int
48
48
  xmlRegexpExec (xmlRegexpPtr comp,
49
49
  const xmlChar *value);
50
+ XML_DEPRECATED
50
51
  XMLPUBFUN void
51
52
  xmlRegexpPrint (FILE *output,
52
53
  xmlRegexpPtr regexp);
@@ -70,28 +71,34 @@ typedef void (*xmlRegExecCallbacks) (xmlRegExecCtxtPtr exec,
70
71
  /*
71
72
  * The progressive API
72
73
  */
74
+ XML_DEPRECATED
73
75
  XMLPUBFUN xmlRegExecCtxtPtr
74
76
  xmlRegNewExecCtxt (xmlRegexpPtr comp,
75
77
  xmlRegExecCallbacks callback,
76
78
  void *data);
79
+ XML_DEPRECATED
77
80
  XMLPUBFUN void
78
81
  xmlRegFreeExecCtxt (xmlRegExecCtxtPtr exec);
82
+ XML_DEPRECATED
79
83
  XMLPUBFUN int
80
84
  xmlRegExecPushString(xmlRegExecCtxtPtr exec,
81
85
  const xmlChar *value,
82
86
  void *data);
87
+ XML_DEPRECATED
83
88
  XMLPUBFUN int
84
89
  xmlRegExecPushString2(xmlRegExecCtxtPtr exec,
85
90
  const xmlChar *value,
86
91
  const xmlChar *value2,
87
92
  void *data);
88
93
 
94
+ XML_DEPRECATED
89
95
  XMLPUBFUN int
90
96
  xmlRegExecNextValues(xmlRegExecCtxtPtr exec,
91
97
  int *nbval,
92
98
  int *nbneg,
93
99
  xmlChar **values,
94
100
  int *terminal);
101
+ XML_DEPRECATED
95
102
  XMLPUBFUN int
96
103
  xmlRegExecErrInfo (xmlRegExecCtxtPtr exec,
97
104
  const xmlChar **string,
@@ -99,113 +106,7 @@ XMLPUBFUN int
99
106
  int *nbneg,
100
107
  xmlChar **values,
101
108
  int *terminal);
102
- #ifdef LIBXML_EXPR_ENABLED
103
- /*
104
- * Formal regular expression handling
105
- * Its goal is to do some formal work on content models
106
- */
107
-
108
- /* expressions are used within a context */
109
- typedef struct _xmlExpCtxt xmlExpCtxt;
110
- typedef xmlExpCtxt *xmlExpCtxtPtr;
111
-
112
- XMLPUBFUN void
113
- xmlExpFreeCtxt (xmlExpCtxtPtr ctxt);
114
- XMLPUBFUN xmlExpCtxtPtr
115
- xmlExpNewCtxt (int maxNodes,
116
- xmlDictPtr dict);
117
-
118
- XMLPUBFUN int
119
- xmlExpCtxtNbNodes(xmlExpCtxtPtr ctxt);
120
- XMLPUBFUN int
121
- xmlExpCtxtNbCons(xmlExpCtxtPtr ctxt);
122
-
123
- /* Expressions are trees but the tree is opaque */
124
- typedef struct _xmlExpNode xmlExpNode;
125
- typedef xmlExpNode *xmlExpNodePtr;
126
-
127
- typedef enum {
128
- XML_EXP_EMPTY = 0,
129
- XML_EXP_FORBID = 1,
130
- XML_EXP_ATOM = 2,
131
- XML_EXP_SEQ = 3,
132
- XML_EXP_OR = 4,
133
- XML_EXP_COUNT = 5
134
- } xmlExpNodeType;
135
-
136
- /*
137
- * 2 core expressions shared by all for the empty language set
138
- * and for the set with just the empty token
139
- */
140
- XMLPUBVAR xmlExpNodePtr forbiddenExp;
141
- XMLPUBVAR xmlExpNodePtr emptyExp;
142
-
143
- /*
144
- * Expressions are reference counted internally
145
- */
146
- XMLPUBFUN void
147
- xmlExpFree (xmlExpCtxtPtr ctxt,
148
- xmlExpNodePtr expr);
149
- XMLPUBFUN void
150
- xmlExpRef (xmlExpNodePtr expr);
151
109
 
152
- /*
153
- * constructors can be either manual or from a string
154
- */
155
- XMLPUBFUN xmlExpNodePtr
156
- xmlExpParse (xmlExpCtxtPtr ctxt,
157
- const char *expr);
158
- XMLPUBFUN xmlExpNodePtr
159
- xmlExpNewAtom (xmlExpCtxtPtr ctxt,
160
- const xmlChar *name,
161
- int len);
162
- XMLPUBFUN xmlExpNodePtr
163
- xmlExpNewOr (xmlExpCtxtPtr ctxt,
164
- xmlExpNodePtr left,
165
- xmlExpNodePtr right);
166
- XMLPUBFUN xmlExpNodePtr
167
- xmlExpNewSeq (xmlExpCtxtPtr ctxt,
168
- xmlExpNodePtr left,
169
- xmlExpNodePtr right);
170
- XMLPUBFUN xmlExpNodePtr
171
- xmlExpNewRange (xmlExpCtxtPtr ctxt,
172
- xmlExpNodePtr subset,
173
- int min,
174
- int max);
175
- /*
176
- * The really interesting APIs
177
- */
178
- XMLPUBFUN int
179
- xmlExpIsNillable(xmlExpNodePtr expr);
180
- XMLPUBFUN int
181
- xmlExpMaxToken (xmlExpNodePtr expr);
182
- XMLPUBFUN int
183
- xmlExpGetLanguage(xmlExpCtxtPtr ctxt,
184
- xmlExpNodePtr expr,
185
- const xmlChar**langList,
186
- int len);
187
- XMLPUBFUN int
188
- xmlExpGetStart (xmlExpCtxtPtr ctxt,
189
- xmlExpNodePtr expr,
190
- const xmlChar**tokList,
191
- int len);
192
- XMLPUBFUN xmlExpNodePtr
193
- xmlExpStringDerive(xmlExpCtxtPtr ctxt,
194
- xmlExpNodePtr expr,
195
- const xmlChar *str,
196
- int len);
197
- XMLPUBFUN xmlExpNodePtr
198
- xmlExpExpDerive (xmlExpCtxtPtr ctxt,
199
- xmlExpNodePtr expr,
200
- xmlExpNodePtr sub);
201
- XMLPUBFUN int
202
- xmlExpSubsume (xmlExpCtxtPtr ctxt,
203
- xmlExpNodePtr expr,
204
- xmlExpNodePtr sub);
205
- XMLPUBFUN void
206
- xmlExpDump (xmlBufferPtr buf,
207
- xmlExpNodePtr expr);
208
- #endif /* LIBXML_EXPR_ENABLED */
209
110
  #ifdef __cplusplus
210
111
  }
211
112
  #endif
@@ -34,7 +34,11 @@ typedef enum {
34
34
  XML_SAVE_XHTML = 1<<4, /* force XHTML1 specific rules */
35
35
  XML_SAVE_AS_XML = 1<<5, /* force XML serialization on HTML doc */
36
36
  XML_SAVE_AS_HTML = 1<<6, /* force HTML serialization on XML doc */
37
- XML_SAVE_WSNONSIG = 1<<7 /* format with non-significant whitespace */
37
+ XML_SAVE_WSNONSIG = 1<<7, /* format with non-significant whitespace */
38
+ /* Available since 2.14.0 */
39
+ XML_SAVE_EMPTY = 1<<8, /* force empty tags, overriding global */
40
+ XML_SAVE_NO_INDENT = 1<<9, /* disable indenting */
41
+ XML_SAVE_INDENT = 1<<10 /* force indenting, overriding global */
38
42
  } xmlSaveOption;
39
43
 
40
44
 
@@ -73,11 +77,16 @@ XMLPUBFUN int
73
77
  xmlSaveFlush (xmlSaveCtxtPtr ctxt);
74
78
  XMLPUBFUN int
75
79
  xmlSaveClose (xmlSaveCtxtPtr ctxt);
76
- XMLPUBFUN int
80
+ XMLPUBFUN xmlParserErrors
77
81
  xmlSaveFinish (xmlSaveCtxtPtr ctxt);
82
+ XMLPUBFUN int
83
+ xmlSaveSetIndentString (xmlSaveCtxtPtr ctxt,
84
+ const char *indent);
85
+ XML_DEPRECATED
78
86
  XMLPUBFUN int
79
87
  xmlSaveSetEscape (xmlSaveCtxtPtr ctxt,
80
88
  xmlCharEncodingOutputFunc escape);
89
+ XML_DEPRECATED
81
90
  XMLPUBFUN int
82
91
  xmlSaveSetAttrEscape (xmlSaveCtxtPtr ctxt,
83
92
  xmlCharEncodingOutputFunc escape);
@@ -18,6 +18,7 @@
18
18
 
19
19
  #include <stdio.h>
20
20
  #include <libxml/encoding.h>
21
+ #include <libxml/parser.h>
21
22
  #include <libxml/tree.h>
22
23
  #include <libxml/xmlerror.h>
23
24
 
@@ -156,22 +157,26 @@ XMLPUBFUN void
156
157
  xmlStructuredErrorFunc serror,
157
158
  void *ctx);
158
159
  XMLPUBFUN int
159
- xmlSchemaGetParserErrors(xmlSchemaParserCtxtPtr ctxt,
160
+ xmlSchemaGetParserErrors (xmlSchemaParserCtxtPtr ctxt,
160
161
  xmlSchemaValidityErrorFunc * err,
161
162
  xmlSchemaValidityWarningFunc * warn,
162
163
  void **ctx);
164
+ XMLPUBFUN void
165
+ xmlSchemaSetResourceLoader (xmlSchemaParserCtxtPtr ctxt,
166
+ xmlResourceLoader loader,
167
+ void *data);
163
168
  XMLPUBFUN int
164
- xmlSchemaIsValid (xmlSchemaValidCtxtPtr ctxt);
169
+ xmlSchemaIsValid (xmlSchemaValidCtxtPtr ctxt);
165
170
 
166
171
  XMLPUBFUN xmlSchemaPtr
167
172
  xmlSchemaParse (xmlSchemaParserCtxtPtr ctxt);
168
173
  XMLPUBFUN void
169
174
  xmlSchemaFree (xmlSchemaPtr schema);
170
- #ifdef LIBXML_OUTPUT_ENABLED
175
+ #ifdef LIBXML_DEBUG_ENABLED
171
176
  XMLPUBFUN void
172
177
  xmlSchemaDump (FILE *output,
173
178
  xmlSchemaPtr schema);
174
- #endif /* LIBXML_OUTPUT_ENABLED */
179
+ #endif /* LIBXML_DEBUG_ENABLED */
175
180
  /*
176
181
  * Interfaces for validating
177
182
  */
@@ -212,7 +217,7 @@ XMLPUBFUN int
212
217
  xmlSchemaValidateStream (xmlSchemaValidCtxtPtr ctxt,
213
218
  xmlParserInputBufferPtr input,
214
219
  xmlCharEncoding enc,
215
- xmlSAXHandlerPtr sax,
220
+ const xmlSAXHandler *sax,
216
221
  void *user_data);
217
222
  XMLPUBFUN int
218
223
  xmlSchemaValidateFile (xmlSchemaValidCtxtPtr ctxt,
@@ -2,365 +2,14 @@
2
2
  * Summary: Unicode character APIs
3
3
  * Description: API for the Unicode character APIs
4
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: Tue Apr 30 17:30:38 2024
11
- * Sources: Blocks-4.0.1.txt UnicodeData-4.0.1.txt
12
- * Author: Daniel Veillard
5
+ * Deprecated, don't use.
13
6
  */
14
7
 
15
8
  #ifndef __XML_UNICODE_H__
16
9
  #define __XML_UNICODE_H__
17
10
 
18
- #include <libxml/xmlversion.h>
19
-
20
- #ifdef LIBXML_UNICODE_ENABLED
21
-
22
- #ifdef __cplusplus
23
- extern "C" {
24
- #endif
25
-
26
- XML_DEPRECATED
27
- XMLPUBFUN int xmlUCSIsAegeanNumbers (int code);
28
- XML_DEPRECATED
29
- XMLPUBFUN int xmlUCSIsAlphabeticPresentationForms (int code);
30
- XML_DEPRECATED
31
- XMLPUBFUN int xmlUCSIsArabic (int code);
32
- XML_DEPRECATED
33
- XMLPUBFUN int xmlUCSIsArabicPresentationFormsA (int code);
34
- XML_DEPRECATED
35
- XMLPUBFUN int xmlUCSIsArabicPresentationFormsB (int code);
36
- XML_DEPRECATED
37
- XMLPUBFUN int xmlUCSIsArmenian (int code);
38
- XML_DEPRECATED
39
- XMLPUBFUN int xmlUCSIsArrows (int code);
40
- XML_DEPRECATED
41
- XMLPUBFUN int xmlUCSIsBasicLatin (int code);
42
- XML_DEPRECATED
43
- XMLPUBFUN int xmlUCSIsBengali (int code);
44
- XML_DEPRECATED
45
- XMLPUBFUN int xmlUCSIsBlockElements (int code);
46
- XML_DEPRECATED
47
- XMLPUBFUN int xmlUCSIsBopomofo (int code);
48
- XML_DEPRECATED
49
- XMLPUBFUN int xmlUCSIsBopomofoExtended (int code);
50
- XML_DEPRECATED
51
- XMLPUBFUN int xmlUCSIsBoxDrawing (int code);
52
- XML_DEPRECATED
53
- XMLPUBFUN int xmlUCSIsBraillePatterns (int code);
54
- XML_DEPRECATED
55
- XMLPUBFUN int xmlUCSIsBuhid (int code);
56
- XML_DEPRECATED
57
- XMLPUBFUN int xmlUCSIsByzantineMusicalSymbols (int code);
58
- XML_DEPRECATED
59
- XMLPUBFUN int xmlUCSIsCJKCompatibility (int code);
60
- XML_DEPRECATED
61
- XMLPUBFUN int xmlUCSIsCJKCompatibilityForms (int code);
62
- XML_DEPRECATED
63
- XMLPUBFUN int xmlUCSIsCJKCompatibilityIdeographs (int code);
64
- XML_DEPRECATED
65
- XMLPUBFUN int xmlUCSIsCJKCompatibilityIdeographsSupplement (int code);
66
- XML_DEPRECATED
67
- XMLPUBFUN int xmlUCSIsCJKRadicalsSupplement (int code);
68
- XML_DEPRECATED
69
- XMLPUBFUN int xmlUCSIsCJKSymbolsandPunctuation (int code);
70
- XML_DEPRECATED
71
- XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographs (int code);
72
- XML_DEPRECATED
73
- XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographsExtensionA (int code);
74
- XML_DEPRECATED
75
- XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographsExtensionB (int code);
76
- XML_DEPRECATED
77
- XMLPUBFUN int xmlUCSIsCherokee (int code);
78
- XML_DEPRECATED
79
- XMLPUBFUN int xmlUCSIsCombiningDiacriticalMarks (int code);
80
- XML_DEPRECATED
81
- XMLPUBFUN int xmlUCSIsCombiningDiacriticalMarksforSymbols (int code);
82
- XML_DEPRECATED
83
- XMLPUBFUN int xmlUCSIsCombiningHalfMarks (int code);
84
- XML_DEPRECATED
85
- XMLPUBFUN int xmlUCSIsCombiningMarksforSymbols (int code);
86
- XML_DEPRECATED
87
- XMLPUBFUN int xmlUCSIsControlPictures (int code);
88
- XML_DEPRECATED
89
- XMLPUBFUN int xmlUCSIsCurrencySymbols (int code);
90
- XML_DEPRECATED
91
- XMLPUBFUN int xmlUCSIsCypriotSyllabary (int code);
92
- XML_DEPRECATED
93
- XMLPUBFUN int xmlUCSIsCyrillic (int code);
94
- XML_DEPRECATED
95
- XMLPUBFUN int xmlUCSIsCyrillicSupplement (int code);
96
- XML_DEPRECATED
97
- XMLPUBFUN int xmlUCSIsDeseret (int code);
98
- XML_DEPRECATED
99
- XMLPUBFUN int xmlUCSIsDevanagari (int code);
100
- XML_DEPRECATED
101
- XMLPUBFUN int xmlUCSIsDingbats (int code);
102
- XML_DEPRECATED
103
- XMLPUBFUN int xmlUCSIsEnclosedAlphanumerics (int code);
104
- XML_DEPRECATED
105
- XMLPUBFUN int xmlUCSIsEnclosedCJKLettersandMonths (int code);
106
- XML_DEPRECATED
107
- XMLPUBFUN int xmlUCSIsEthiopic (int code);
108
- XML_DEPRECATED
109
- XMLPUBFUN int xmlUCSIsGeneralPunctuation (int code);
110
- XML_DEPRECATED
111
- XMLPUBFUN int xmlUCSIsGeometricShapes (int code);
112
- XML_DEPRECATED
113
- XMLPUBFUN int xmlUCSIsGeorgian (int code);
114
- XML_DEPRECATED
115
- XMLPUBFUN int xmlUCSIsGothic (int code);
116
- XML_DEPRECATED
117
- XMLPUBFUN int xmlUCSIsGreek (int code);
118
- XML_DEPRECATED
119
- XMLPUBFUN int xmlUCSIsGreekExtended (int code);
120
- XML_DEPRECATED
121
- XMLPUBFUN int xmlUCSIsGreekandCoptic (int code);
122
- XML_DEPRECATED
123
- XMLPUBFUN int xmlUCSIsGujarati (int code);
124
- XML_DEPRECATED
125
- XMLPUBFUN int xmlUCSIsGurmukhi (int code);
126
- XML_DEPRECATED
127
- XMLPUBFUN int xmlUCSIsHalfwidthandFullwidthForms (int code);
128
- XML_DEPRECATED
129
- XMLPUBFUN int xmlUCSIsHangulCompatibilityJamo (int code);
130
- XML_DEPRECATED
131
- XMLPUBFUN int xmlUCSIsHangulJamo (int code);
132
- XML_DEPRECATED
133
- XMLPUBFUN int xmlUCSIsHangulSyllables (int code);
134
- XML_DEPRECATED
135
- XMLPUBFUN int xmlUCSIsHanunoo (int code);
136
- XML_DEPRECATED
137
- XMLPUBFUN int xmlUCSIsHebrew (int code);
138
- XML_DEPRECATED
139
- XMLPUBFUN int xmlUCSIsHighPrivateUseSurrogates (int code);
140
- XML_DEPRECATED
141
- XMLPUBFUN int xmlUCSIsHighSurrogates (int code);
142
- XML_DEPRECATED
143
- XMLPUBFUN int xmlUCSIsHiragana (int code);
144
- XML_DEPRECATED
145
- XMLPUBFUN int xmlUCSIsIPAExtensions (int code);
146
- XML_DEPRECATED
147
- XMLPUBFUN int xmlUCSIsIdeographicDescriptionCharacters (int code);
148
- XML_DEPRECATED
149
- XMLPUBFUN int xmlUCSIsKanbun (int code);
150
- XML_DEPRECATED
151
- XMLPUBFUN int xmlUCSIsKangxiRadicals (int code);
152
- XML_DEPRECATED
153
- XMLPUBFUN int xmlUCSIsKannada (int code);
154
- XML_DEPRECATED
155
- XMLPUBFUN int xmlUCSIsKatakana (int code);
156
- XML_DEPRECATED
157
- XMLPUBFUN int xmlUCSIsKatakanaPhoneticExtensions (int code);
158
- XML_DEPRECATED
159
- XMLPUBFUN int xmlUCSIsKhmer (int code);
160
- XML_DEPRECATED
161
- XMLPUBFUN int xmlUCSIsKhmerSymbols (int code);
162
- XML_DEPRECATED
163
- XMLPUBFUN int xmlUCSIsLao (int code);
164
- XML_DEPRECATED
165
- XMLPUBFUN int xmlUCSIsLatin1Supplement (int code);
166
- XML_DEPRECATED
167
- XMLPUBFUN int xmlUCSIsLatinExtendedA (int code);
168
- XML_DEPRECATED
169
- XMLPUBFUN int xmlUCSIsLatinExtendedB (int code);
170
- XML_DEPRECATED
171
- XMLPUBFUN int xmlUCSIsLatinExtendedAdditional (int code);
172
- XML_DEPRECATED
173
- XMLPUBFUN int xmlUCSIsLetterlikeSymbols (int code);
174
- XML_DEPRECATED
175
- XMLPUBFUN int xmlUCSIsLimbu (int code);
176
- XML_DEPRECATED
177
- XMLPUBFUN int xmlUCSIsLinearBIdeograms (int code);
178
- XML_DEPRECATED
179
- XMLPUBFUN int xmlUCSIsLinearBSyllabary (int code);
180
- XML_DEPRECATED
181
- XMLPUBFUN int xmlUCSIsLowSurrogates (int code);
182
- XML_DEPRECATED
183
- XMLPUBFUN int xmlUCSIsMalayalam (int code);
184
- XML_DEPRECATED
185
- XMLPUBFUN int xmlUCSIsMathematicalAlphanumericSymbols (int code);
186
- XML_DEPRECATED
187
- XMLPUBFUN int xmlUCSIsMathematicalOperators (int code);
188
- XML_DEPRECATED
189
- XMLPUBFUN int xmlUCSIsMiscellaneousMathematicalSymbolsA (int code);
190
- XML_DEPRECATED
191
- XMLPUBFUN int xmlUCSIsMiscellaneousMathematicalSymbolsB (int code);
192
- XML_DEPRECATED
193
- XMLPUBFUN int xmlUCSIsMiscellaneousSymbols (int code);
194
- XML_DEPRECATED
195
- XMLPUBFUN int xmlUCSIsMiscellaneousSymbolsandArrows (int code);
196
- XML_DEPRECATED
197
- XMLPUBFUN int xmlUCSIsMiscellaneousTechnical (int code);
198
- XML_DEPRECATED
199
- XMLPUBFUN int xmlUCSIsMongolian (int code);
200
- XML_DEPRECATED
201
- XMLPUBFUN int xmlUCSIsMusicalSymbols (int code);
202
- XML_DEPRECATED
203
- XMLPUBFUN int xmlUCSIsMyanmar (int code);
204
- XML_DEPRECATED
205
- XMLPUBFUN int xmlUCSIsNumberForms (int code);
206
- XML_DEPRECATED
207
- XMLPUBFUN int xmlUCSIsOgham (int code);
208
- XML_DEPRECATED
209
- XMLPUBFUN int xmlUCSIsOldItalic (int code);
210
- XML_DEPRECATED
211
- XMLPUBFUN int xmlUCSIsOpticalCharacterRecognition (int code);
212
- XML_DEPRECATED
213
- XMLPUBFUN int xmlUCSIsOriya (int code);
214
- XML_DEPRECATED
215
- XMLPUBFUN int xmlUCSIsOsmanya (int code);
216
- XML_DEPRECATED
217
- XMLPUBFUN int xmlUCSIsPhoneticExtensions (int code);
218
- XML_DEPRECATED
219
- XMLPUBFUN int xmlUCSIsPrivateUse (int code);
220
- XML_DEPRECATED
221
- XMLPUBFUN int xmlUCSIsPrivateUseArea (int code);
222
- XML_DEPRECATED
223
- XMLPUBFUN int xmlUCSIsRunic (int code);
224
- XML_DEPRECATED
225
- XMLPUBFUN int xmlUCSIsShavian (int code);
226
- XML_DEPRECATED
227
- XMLPUBFUN int xmlUCSIsSinhala (int code);
228
- XML_DEPRECATED
229
- XMLPUBFUN int xmlUCSIsSmallFormVariants (int code);
230
- XML_DEPRECATED
231
- XMLPUBFUN int xmlUCSIsSpacingModifierLetters (int code);
232
- XML_DEPRECATED
233
- XMLPUBFUN int xmlUCSIsSpecials (int code);
234
- XML_DEPRECATED
235
- XMLPUBFUN int xmlUCSIsSuperscriptsandSubscripts (int code);
236
- XML_DEPRECATED
237
- XMLPUBFUN int xmlUCSIsSupplementalArrowsA (int code);
238
- XML_DEPRECATED
239
- XMLPUBFUN int xmlUCSIsSupplementalArrowsB (int code);
240
- XML_DEPRECATED
241
- XMLPUBFUN int xmlUCSIsSupplementalMathematicalOperators (int code);
242
- XML_DEPRECATED
243
- XMLPUBFUN int xmlUCSIsSupplementaryPrivateUseAreaA (int code);
244
- XML_DEPRECATED
245
- XMLPUBFUN int xmlUCSIsSupplementaryPrivateUseAreaB (int code);
246
- XML_DEPRECATED
247
- XMLPUBFUN int xmlUCSIsSyriac (int code);
248
- XML_DEPRECATED
249
- XMLPUBFUN int xmlUCSIsTagalog (int code);
250
- XML_DEPRECATED
251
- XMLPUBFUN int xmlUCSIsTagbanwa (int code);
252
- XML_DEPRECATED
253
- XMLPUBFUN int xmlUCSIsTags (int code);
254
- XML_DEPRECATED
255
- XMLPUBFUN int xmlUCSIsTaiLe (int code);
256
- XML_DEPRECATED
257
- XMLPUBFUN int xmlUCSIsTaiXuanJingSymbols (int code);
258
- XML_DEPRECATED
259
- XMLPUBFUN int xmlUCSIsTamil (int code);
260
- XML_DEPRECATED
261
- XMLPUBFUN int xmlUCSIsTelugu (int code);
262
- XML_DEPRECATED
263
- XMLPUBFUN int xmlUCSIsThaana (int code);
264
- XML_DEPRECATED
265
- XMLPUBFUN int xmlUCSIsThai (int code);
266
- XML_DEPRECATED
267
- XMLPUBFUN int xmlUCSIsTibetan (int code);
268
- XML_DEPRECATED
269
- XMLPUBFUN int xmlUCSIsUgaritic (int code);
270
- XML_DEPRECATED
271
- XMLPUBFUN int xmlUCSIsUnifiedCanadianAboriginalSyllabics (int code);
272
- XML_DEPRECATED
273
- XMLPUBFUN int xmlUCSIsVariationSelectors (int code);
274
- XML_DEPRECATED
275
- XMLPUBFUN int xmlUCSIsVariationSelectorsSupplement (int code);
276
- XML_DEPRECATED
277
- XMLPUBFUN int xmlUCSIsYiRadicals (int code);
278
- XML_DEPRECATED
279
- XMLPUBFUN int xmlUCSIsYiSyllables (int code);
280
- XML_DEPRECATED
281
- XMLPUBFUN int xmlUCSIsYijingHexagramSymbols (int code);
282
-
283
- XMLPUBFUN int xmlUCSIsBlock (int code, const char *block);
284
-
285
- XML_DEPRECATED
286
- XMLPUBFUN int xmlUCSIsCatC (int code);
287
- XML_DEPRECATED
288
- XMLPUBFUN int xmlUCSIsCatCc (int code);
289
- XML_DEPRECATED
290
- XMLPUBFUN int xmlUCSIsCatCf (int code);
291
- XML_DEPRECATED
292
- XMLPUBFUN int xmlUCSIsCatCo (int code);
293
- XML_DEPRECATED
294
- XMLPUBFUN int xmlUCSIsCatCs (int code);
295
- XML_DEPRECATED
296
- XMLPUBFUN int xmlUCSIsCatL (int code);
297
- XML_DEPRECATED
298
- XMLPUBFUN int xmlUCSIsCatLl (int code);
299
- XML_DEPRECATED
300
- XMLPUBFUN int xmlUCSIsCatLm (int code);
301
- XML_DEPRECATED
302
- XMLPUBFUN int xmlUCSIsCatLo (int code);
303
- XML_DEPRECATED
304
- XMLPUBFUN int xmlUCSIsCatLt (int code);
305
- XML_DEPRECATED
306
- XMLPUBFUN int xmlUCSIsCatLu (int code);
307
- XML_DEPRECATED
308
- XMLPUBFUN int xmlUCSIsCatM (int code);
309
- XML_DEPRECATED
310
- XMLPUBFUN int xmlUCSIsCatMc (int code);
311
- XML_DEPRECATED
312
- XMLPUBFUN int xmlUCSIsCatMe (int code);
313
- XML_DEPRECATED
314
- XMLPUBFUN int xmlUCSIsCatMn (int code);
315
- XML_DEPRECATED
316
- XMLPUBFUN int xmlUCSIsCatN (int code);
317
- XML_DEPRECATED
318
- XMLPUBFUN int xmlUCSIsCatNd (int code);
319
- XML_DEPRECATED
320
- XMLPUBFUN int xmlUCSIsCatNl (int code);
321
- XML_DEPRECATED
322
- XMLPUBFUN int xmlUCSIsCatNo (int code);
323
- XML_DEPRECATED
324
- XMLPUBFUN int xmlUCSIsCatP (int code);
325
- XML_DEPRECATED
326
- XMLPUBFUN int xmlUCSIsCatPc (int code);
327
- XML_DEPRECATED
328
- XMLPUBFUN int xmlUCSIsCatPd (int code);
329
- XML_DEPRECATED
330
- XMLPUBFUN int xmlUCSIsCatPe (int code);
331
- XML_DEPRECATED
332
- XMLPUBFUN int xmlUCSIsCatPf (int code);
333
- XML_DEPRECATED
334
- XMLPUBFUN int xmlUCSIsCatPi (int code);
335
- XML_DEPRECATED
336
- XMLPUBFUN int xmlUCSIsCatPo (int code);
337
- XML_DEPRECATED
338
- XMLPUBFUN int xmlUCSIsCatPs (int code);
339
- XML_DEPRECATED
340
- XMLPUBFUN int xmlUCSIsCatS (int code);
341
- XML_DEPRECATED
342
- XMLPUBFUN int xmlUCSIsCatSc (int code);
343
- XML_DEPRECATED
344
- XMLPUBFUN int xmlUCSIsCatSk (int code);
345
- XML_DEPRECATED
346
- XMLPUBFUN int xmlUCSIsCatSm (int code);
347
- XML_DEPRECATED
348
- XMLPUBFUN int xmlUCSIsCatSo (int code);
349
- XML_DEPRECATED
350
- XMLPUBFUN int xmlUCSIsCatZ (int code);
351
- XML_DEPRECATED
352
- XMLPUBFUN int xmlUCSIsCatZl (int code);
353
- XML_DEPRECATED
354
- XMLPUBFUN int xmlUCSIsCatZp (int code);
355
- XML_DEPRECATED
356
- XMLPUBFUN int xmlUCSIsCatZs (int code);
357
-
358
- XMLPUBFUN int xmlUCSIsCat (int code, const char *cat);
359
-
360
- #ifdef __cplusplus
361
- }
11
+ #ifdef __GNUC__
12
+ #warning "libxml/xmlunicode.h is deprecated"
362
13
  #endif
363
14
 
364
- #endif /* LIBXML_UNICODE_ENABLED */
365
-
366
15
  #endif /* __XML_UNICODE_H__ */