| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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__ */ |
| OLD | NEW |