Blame enc.h

Packit Service a31ea6
/*
Packit Service a31ea6
 * Summary: Internal Interfaces for encoding in libxml2
Packit Service a31ea6
 * Description: this module describes a few interfaces which were
Packit Service a31ea6
 *              addded along with the API changes in 2.9.0
Packit Service a31ea6
 *              those are private routines at this point
Packit Service a31ea6
 *
Packit Service a31ea6
 * Copy: See Copyright for the status of this software.
Packit Service a31ea6
 *
Packit Service a31ea6
 * Author: Daniel Veillard
Packit Service a31ea6
 */
Packit Service a31ea6
Packit Service a31ea6
#ifndef __XML_ENC_H__
Packit Service a31ea6
#define __XML_ENC_H__
Packit Service a31ea6
Packit Service a31ea6
#include <libxml/tree.h>
Packit Service a31ea6
Packit Service a31ea6
#ifdef __cplusplus
Packit Service a31ea6
extern "C" {
Packit Service a31ea6
#endif
Packit Service a31ea6
Packit Service a31ea6
int xmlCharEncFirstLineInt(xmlCharEncodingHandler *handler, xmlBufferPtr out,
Packit Service a31ea6
                           xmlBufferPtr in, int len);
Packit Service a31ea6
int xmlCharEncFirstLineInput(xmlParserInputBufferPtr input, int len);
Packit Service a31ea6
int xmlCharEncInput(xmlParserInputBufferPtr input, int flush);
Packit Service a31ea6
int xmlCharEncOutput(xmlOutputBufferPtr output, int init);
Packit Service a31ea6
Packit Service a31ea6
#ifdef __cplusplus
Packit Service a31ea6
}
Packit Service a31ea6
#endif
Packit Service a31ea6
#endif /* __XML_ENC_H__ */
Packit Service a31ea6
Packit Service a31ea6