1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

Release of libxml-1.1, Daniel.

This commit is contained in:
Daniel Veillard
1999-06-02 17:44:04 +00:00
parent 27d88744f9
commit 011b63cb20
223 changed files with 8520 additions and 1424 deletions

View File

@ -216,7 +216,7 @@ UTF8ToUTF16(unsigned short* out, int outlen, unsigned char* in, int inlen)
* Returns one of the XML_CHAR_ENCODING_... values.
*/
xmlCharEncoding
xmlDetectCharEncoding(unsigned char* in)
xmlDetectCharEncoding(const unsigned char* in)
{
if ((in[0] == 0x00) && (in[1] == 0x00) &&
(in[2] == 0x00) && (in[3] == 0x3C))
@ -255,7 +255,7 @@ xmlDetectCharEncoding(unsigned char* in)
* if not recognized.
*/
xmlCharEncoding
xmlParseCharEncoding(char* name)
xmlParseCharEncoding(const char* name)
{
char upper[500];
int i;