2022-08-26 01:22:33 +02:00
|
|
|
#ifndef XML_ENC_H_PRIVATE__
|
|
|
|
#define XML_ENC_H_PRIVATE__
|
|
|
|
|
|
|
|
#include <libxml/encoding.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
|
2022-11-27 02:09:27 +01:00
|
|
|
XML_HIDDEN void
|
|
|
|
xmlInitEncodingInternal(void);
|
2022-11-25 14:26:59 +01:00
|
|
|
|
2025-03-14 00:01:11 +01:00
|
|
|
XML_HIDDEN xmlCharEncError
|
2023-03-21 19:07:12 +01:00
|
|
|
xmlEncInputChunk(xmlCharEncodingHandler *handler, unsigned char *out,
|
2025-03-10 02:18:51 +01:00
|
|
|
int *outlen, const unsigned char *in, int *inlen,
|
|
|
|
int flush);
|
2025-03-14 00:01:11 +01:00
|
|
|
XML_HIDDEN xmlCharEncError
|
2025-03-10 02:18:51 +01:00
|
|
|
xmlCharEncInput(xmlParserInputBufferPtr input, size_t *sizeOut, int flush);
|
2022-11-27 02:09:27 +01:00
|
|
|
XML_HIDDEN int
|
|
|
|
xmlCharEncOutput(xmlOutputBufferPtr output, int init);
|
2022-08-26 01:22:33 +02:00
|
|
|
|
|
|
|
#endif /* XML_ENC_H_PRIVATE__ */
|