@img/sharp-libvips-dev 1.2.2 → 1.2.4-rc.0

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 (67) hide show
  1. package/include/archive.h +2 -2
  2. package/include/archive_entry.h +1 -1
  3. package/include/expat.h +39 -25
  4. package/include/expat_config.h +9 -9
  5. package/include/expat_external.h +62 -61
  6. package/include/harfbuzz/hb-ot-layout.h +6 -0
  7. package/include/harfbuzz/hb-script-list.h +1 -1
  8. package/include/harfbuzz/hb-subset.h +5 -0
  9. package/include/harfbuzz/hb-version.h +3 -3
  10. package/include/jconfig.h +37 -14
  11. package/include/jerror.h +47 -42
  12. package/include/jmorecfg.h +21 -18
  13. package/include/jpeglib.h +216 -132
  14. package/include/librsvg-2.0/librsvg/rsvg-version.h +2 -2
  15. package/include/libxml2/libxml/HTMLparser.h +159 -101
  16. package/include/libxml2/libxml/HTMLtree.h +49 -74
  17. package/include/libxml2/libxml/SAX.h +8 -5
  18. package/include/libxml2/libxml/SAX2.h +18 -15
  19. package/include/libxml2/libxml/c14n.h +30 -29
  20. package/include/libxml2/libxml/catalog.h +47 -22
  21. package/include/libxml2/libxml/chvalid.h +52 -64
  22. package/include/libxml2/libxml/debugXML.h +18 -15
  23. package/include/libxml2/libxml/dict.h +22 -19
  24. package/include/libxml2/libxml/encoding.h +144 -111
  25. package/include/libxml2/libxml/entities.h +95 -75
  26. package/include/libxml2/libxml/globals.h +7 -4
  27. package/include/libxml2/libxml/hash.h +61 -64
  28. package/include/libxml2/libxml/list.h +59 -51
  29. package/include/libxml2/libxml/nanoftp.h +7 -4
  30. package/include/libxml2/libxml/nanohttp.h +10 -7
  31. package/include/libxml2/libxml/parser.h +1091 -563
  32. package/include/libxml2/libxml/parserInternals.h +167 -214
  33. package/include/libxml2/libxml/pattern.h +29 -31
  34. package/include/libxml2/libxml/relaxng.h +59 -58
  35. package/include/libxml2/libxml/schemasInternals.h +114 -268
  36. package/include/libxml2/libxml/schematron.h +59 -51
  37. package/include/libxml2/libxml/threads.h +19 -20
  38. package/include/libxml2/libxml/tree.h +873 -623
  39. package/include/libxml2/libxml/uri.h +21 -22
  40. package/include/libxml2/libxml/valid.h +169 -199
  41. package/include/libxml2/libxml/xinclude.h +24 -43
  42. package/include/libxml2/libxml/xlink.h +55 -51
  43. package/include/libxml2/libxml/xmlIO.h +127 -145
  44. package/include/libxml2/libxml/xmlautomata.h +66 -65
  45. package/include/libxml2/libxml/xmlerror.h +197 -94
  46. package/include/libxml2/libxml/xmlexports.h +20 -18
  47. package/include/libxml2/libxml/xmlmemory.h +44 -29
  48. package/include/libxml2/libxml/xmlmodule.h +14 -15
  49. package/include/libxml2/libxml/xmlreader.h +137 -131
  50. package/include/libxml2/libxml/xmlregexp.h +28 -31
  51. package/include/libxml2/libxml/xmlsave.h +81 -36
  52. package/include/libxml2/libxml/xmlschemas.h +61 -67
  53. package/include/libxml2/libxml/xmlschemastypes.h +60 -54
  54. package/include/libxml2/libxml/xmlstring.h +8 -9
  55. package/include/libxml2/libxml/xmlunicode.h +6 -3
  56. package/include/libxml2/libxml/xmlversion.h +44 -121
  57. package/include/libxml2/libxml/xmlwriter.h +97 -97
  58. package/include/libxml2/libxml/xpath.h +235 -232
  59. package/include/libxml2/libxml/xpathInternals.h +247 -277
  60. package/include/libxml2/libxml/xpointer.h +21 -17
  61. package/include/tiff.h +1 -0
  62. package/include/tiffconf.h +1 -1
  63. package/include/tiffio.h +23 -5
  64. package/include/tiffvers.h +4 -4
  65. package/include/vips/version.h +4 -4
  66. package/package.json +1 -1
  67. package/versions.json +9 -9
@@ -1,11 +1,14 @@
1
1
  /**
2
- * Summary: library of generic URI related routines
3
- * Description: library of generic URI related routines
2
+ * @file
3
+ *
4
+ * @brief library of generic URI related routines
5
+ *
6
+ * library of generic URI related routines
4
7
  * Implements RFC 2396
5
8
  *
6
- * Copy: See Copyright for the status of this software.
9
+ * @copyright See Copyright for the status of this software.
7
10
  *
8
- * Author: Daniel Veillard
11
+ * @author Daniel Veillard
9
12
  */
10
13
 
11
14
  #ifndef __XML_URI_H__
@@ -19,18 +22,19 @@
19
22
  extern "C" {
20
23
  #endif
21
24
 
25
+ /** Parsed URI */
26
+ typedef struct _xmlURI xmlURI;
27
+ typedef xmlURI *xmlURIPtr;
22
28
  /**
23
- * xmlURI:
29
+ * A parsed URI reference.
24
30
  *
25
- * A parsed URI reference. This is a struct containing the various fields
31
+ * This is a struct containing the various fields
26
32
  * as described in RFC 2396 but separated for further processing.
27
33
  *
28
34
  * Note: query is a deprecated field which is incorrectly unescaped.
29
35
  * query_raw takes precedence over query if the former is set.
30
- * See: http://mail.gnome.org/archives/xml/2007-April/thread.html#00127
36
+ * See: http://mail.gnome.org/archives/xml/2007-April/thread.html\#00127
31
37
  */
32
- typedef struct _xmlURI xmlURI;
33
- typedef xmlURI *xmlURIPtr;
34
38
  struct _xmlURI {
35
39
  char *scheme; /* the URI scheme */
36
40
  char *opaque; /* opaque part */
@@ -45,12 +49,7 @@ struct _xmlURI {
45
49
  char *query_raw; /* the query string (as it appears in the URI) */
46
50
  };
47
51
 
48
- /*
49
- * This function is in tree.h:
50
- * xmlChar * xmlNodeGetBase (xmlDocPtr doc,
51
- * xmlNodePtr cur);
52
- */
53
- XMLPUBFUN xmlURIPtr
52
+ XMLPUBFUN xmlURI *
54
53
  xmlCreateURI (void);
55
54
  XMLPUBFUN int
56
55
  xmlBuildURISafe (const xmlChar *URI,
@@ -66,22 +65,22 @@ XMLPUBFUN int
66
65
  XMLPUBFUN xmlChar *
67
66
  xmlBuildRelativeURI (const xmlChar *URI,
68
67
  const xmlChar *base);
69
- XMLPUBFUN xmlURIPtr
68
+ XMLPUBFUN xmlURI *
70
69
  xmlParseURI (const char *str);
71
70
  XMLPUBFUN int
72
71
  xmlParseURISafe (const char *str,
73
- xmlURIPtr *uri);
74
- XMLPUBFUN xmlURIPtr
72
+ xmlURI **uri);
73
+ XMLPUBFUN xmlURI *
75
74
  xmlParseURIRaw (const char *str,
76
75
  int raw);
77
76
  XMLPUBFUN int
78
- xmlParseURIReference (xmlURIPtr uri,
77
+ xmlParseURIReference (xmlURI *uri,
79
78
  const char *str);
80
79
  XMLPUBFUN xmlChar *
81
- xmlSaveUri (xmlURIPtr uri);
80
+ xmlSaveUri (xmlURI *uri);
82
81
  XMLPUBFUN void
83
82
  xmlPrintURI (FILE *stream,
84
- xmlURIPtr uri);
83
+ xmlURI *uri);
85
84
  XMLPUBFUN xmlChar *
86
85
  xmlURIEscapeStr (const xmlChar *str,
87
86
  const xmlChar *list);
@@ -94,7 +93,7 @@ XMLPUBFUN int
94
93
  XMLPUBFUN xmlChar *
95
94
  xmlURIEscape (const xmlChar *str);
96
95
  XMLPUBFUN void
97
- xmlFreeURI (xmlURIPtr uri);
96
+ xmlFreeURI (xmlURI *uri);
98
97
  XMLPUBFUN xmlChar*
99
98
  xmlCanonicPath (const xmlChar *path);
100
99
  XMLPUBFUN xmlChar*