Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: third_party/libxml/src/include/libxml/xmlstring.h

Issue 2010803004: Roll libxml to bdec2183f34b37ee89ae1d330c6ad2bb4d76605f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update README.chromium Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libxml/src/include/libxml/xmlerror.h ('k') | third_party/libxml/src/libxml.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Summary: set of routines to process strings 2 * Summary: set of routines to process strings
3 * Description: type and interfaces needed for the internal string handling 3 * Description: type and interfaces needed for the internal string handling
4 * of the library, especially UTF8 processing. 4 * of the library, especially UTF8 processing.
5 * 5 *
6 * Copy: See Copyright for the status of this software. 6 * Copy: See Copyright for the status of this software.
7 * 7 *
8 * Author: Daniel Veillard 8 * Author: Daniel Veillard
9 */ 9 */
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 xmlStrncat (xmlChar *cur, 90 xmlStrncat (xmlChar *cur,
91 const xmlChar *add, 91 const xmlChar *add,
92 int len); 92 int len);
93 XMLPUBFUN xmlChar * XMLCALL 93 XMLPUBFUN xmlChar * XMLCALL
94 xmlStrncatNew (const xmlChar *str1, 94 xmlStrncatNew (const xmlChar *str1,
95 const xmlChar *str2, 95 const xmlChar *str2,
96 int len); 96 int len);
97 XMLPUBFUN int XMLCALL 97 XMLPUBFUN int XMLCALL
98 xmlStrPrintf (xmlChar *buf, 98 xmlStrPrintf (xmlChar *buf,
99 int len, 99 int len,
100 const xmlChar *msg, 100 const char *msg,
101 ...); 101 ...) LIBXML_ATTR_FORMAT(3,4);
102 XMLPUBFUN int XMLCALL 102 XMLPUBFUN int XMLCALL
103 xmlStrVPrintf (xmlChar *buf, 103 xmlStrVPrintf (xmlChar *buf,
104 int len, 104 int len,
105 const xmlChar *msg, 105 const char *msg,
106 va_list ap); 106 va_list ap) LIBXML_ATTR_FORMAT(3,0);
107 107
108 XMLPUBFUN int XMLCALL 108 XMLPUBFUN int XMLCALL
109 xmlGetUTF8Char (const unsigned char *utf, 109 xmlGetUTF8Char (const unsigned char *utf,
110 int *len); 110 int *len);
111 XMLPUBFUN int XMLCALL 111 XMLPUBFUN int XMLCALL
112 xmlCheckUTF8 (const unsigned char *utf); 112 xmlCheckUTF8 (const unsigned char *utf);
113 XMLPUBFUN int XMLCALL 113 XMLPUBFUN int XMLCALL
114 xmlUTF8Strsize (const xmlChar *utf, 114 xmlUTF8Strsize (const xmlChar *utf,
115 int len); 115 int len);
116 XMLPUBFUN xmlChar * XMLCALL 116 XMLPUBFUN xmlChar * XMLCALL
(...skipping 14 matching lines...) Expand all
131 XMLPUBFUN int XMLCALL 131 XMLPUBFUN int XMLCALL
132 xmlUTF8Size (const xmlChar *utf); 132 xmlUTF8Size (const xmlChar *utf);
133 XMLPUBFUN int XMLCALL 133 XMLPUBFUN int XMLCALL
134 xmlUTF8Charcmp (const xmlChar *utf1, 134 xmlUTF8Charcmp (const xmlChar *utf1,
135 const xmlChar *utf2); 135 const xmlChar *utf2);
136 136
137 #ifdef __cplusplus 137 #ifdef __cplusplus
138 } 138 }
139 #endif 139 #endif
140 #endif /* __XML_STRING_H__ */ 140 #endif /* __XML_STRING_H__ */
OLDNEW
« no previous file with comments | « third_party/libxml/src/include/libxml/xmlerror.h ('k') | third_party/libxml/src/libxml.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698