blob: 057d206df8a89cc6c7835fc9f7568629568207a7 [file] [log] [blame]
Daniel Veillard18d0db22012-07-13 19:51:15 +08001/*
Daniel Veillard28cc42d2012-08-10 10:00:18 +08002 * Summary: Internal Interfaces for encoding in libxml2
3 * Description: this module describes a few interfaces which were
4 * addded along with the API changes in 2.9.0
5 * those are private routines at this point
Daniel Veillard18d0db22012-07-13 19:51:15 +08006 *
Daniel Veillard28cc42d2012-08-10 10:00:18 +08007 * Copy: See Copyright for the status of this software.
Daniel Veillard18d0db22012-07-13 19:51:15 +08008 *
Daniel Veillard28cc42d2012-08-10 10:00:18 +08009 * Author: Daniel Veillard
Daniel Veillard18d0db22012-07-13 19:51:15 +080010 */
11
12#ifndef __XML_ENC_H__
13#define __XML_ENC_H__
14
15#include <libxml/tree.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21int xmlCharEncFirstLineInt(xmlCharEncodingHandler *handler, xmlBufferPtr out,
22 xmlBufferPtr in, int len);
23int xmlCharEncFirstLineInput(xmlParserInputBufferPtr input, int len);
Daniel Veillardbf058dc2013-02-13 18:19:42 +080024int xmlCharEncInput(xmlParserInputBufferPtr input, int flush);
Daniel Veillard18d0db22012-07-13 19:51:15 +080025int xmlCharEncOutput(xmlOutputBufferPtr output, int init);
26
27#ifdef __cplusplus
28}
29#endif
30#endif /* __XML_ENC_H__ */
31
32