| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 va_list ap); | 106 va_list ap); |
| 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 |
| 117 xmlUTF8Strndup (const xmlChar *utf, | 117 xmlUTF8Strndup (const xmlChar *utf, |
| 118 int len); | 118 int len); |
| 119 XMLPUBFUN const xmlChar * XMLCALL | 119 XMLPUBFUN const xmlChar * XMLCALL |
| 120 xmlUTF8Strpos (const xmlChar *utf, | 120 xmlUTF8Strpos (const xmlChar *utf, |
| 121 int pos); | 121 int pos); |
| 122 XMLPUBFUN int XMLCALL | 122 XMLPUBFUN int XMLCALL |
| 123 xmlUTF8Strloc (const xmlChar *utf, | 123 xmlUTF8Strloc (const xmlChar *utf, |
| 124 const xmlChar *utfchar); | 124 const xmlChar *utfchar); |
| 125 XMLPUBFUN xmlChar * XMLCALL | 125 XMLPUBFUN xmlChar * XMLCALL |
| 126 xmlUTF8Strsub (const xmlChar *utf, | 126 xmlUTF8Strsub (const xmlChar *utf, |
| 127 int start, | 127 int start, |
| 128 int len); | 128 int len); |
| 129 XMLPUBFUN int XMLCALL | 129 XMLPUBFUN int XMLCALL |
| 130 xmlUTF8Strlen (const xmlChar *utf); | 130 xmlUTF8Strlen (const xmlChar *utf); |
| 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 |