1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

encoding: Rename unprefixed public functions

This commit is contained in:
Nick Wellnhofer
2025-03-04 12:55:25 +01:00
parent 66fdf94c55
commit 0b27097a92
6 changed files with 233 additions and 215 deletions

View File

@@ -1957,7 +1957,7 @@ htmlEntityValueLookup(unsigned int value) {
}
/**
* UTF8ToHtml:
* htmlUTF8ToHtml:
* @out: a pointer to an array of bytes to store the result
* @outlen: the length of @out
* @in: a pointer to an array of UTF-8 chars
@@ -1972,8 +1972,8 @@ htmlEntityValueLookup(unsigned int value) {
* The value of @outlen after return is the number of octets consumed.
*/
int
UTF8ToHtml(unsigned char* out, int *outlen,
const unsigned char* in, int *inlen) {
htmlUTF8ToHtml(unsigned char* out, int *outlen,
const unsigned char* in, int *inlen) {
const unsigned char* instart = in;
const unsigned char* inend;
unsigned char* outstart = out;