mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
encoding: Make init function private
This commit is contained in:
parent
3e9d5e4f7f
commit
53ab38408d
18
encoding.c
18
encoding.c
@ -1482,16 +1482,20 @@ xmlNewCharEncodingHandler(const char *name,
|
||||
/**
|
||||
* xmlInitCharEncodingHandlers:
|
||||
*
|
||||
* DEPRECATED: This function will be made private. Call xmlInitParser to
|
||||
* initialize the library.
|
||||
*
|
||||
* Initialize the char encoding support, it registers the default
|
||||
* encoding supported.
|
||||
* NOTE: while public, this function usually doesn't need to be called
|
||||
* in normal processing.
|
||||
* DEPRECATED: Alias for xmlInitParser.
|
||||
*/
|
||||
void
|
||||
xmlInitCharEncodingHandlers(void) {
|
||||
xmlInitParser();
|
||||
}
|
||||
|
||||
/**
|
||||
* xmlInitEncodingInternal:
|
||||
*
|
||||
* Initialize the char encoding support.
|
||||
*/
|
||||
void
|
||||
xmlInitEncodingInternal(void) {
|
||||
unsigned short int tst = 0x1234;
|
||||
unsigned char *ptr = (unsigned char *) &tst;
|
||||
|
||||
|
@ -4,6 +4,8 @@
|
||||
#include <libxml/encoding.h>
|
||||
#include <libxml/tree.h>
|
||||
|
||||
void xmlInitEncodingInternal(void);
|
||||
|
||||
int xmlCharEncFirstLineInput(xmlParserInputBufferPtr input, int len);
|
||||
int xmlCharEncInput(xmlParserInputBufferPtr input, int flush);
|
||||
int xmlCharEncOutput(xmlOutputBufferPtr output, int init);
|
||||
|
Loading…
x
Reference in New Issue
Block a user