Blame save.h

Packit 423ecb
/*
Packit 423ecb
 * Summary: Internal Interfaces for saving in libxml2
Packit 423ecb
 * Description: this module describes a few interfaces which were
Packit 423ecb
 *              addded along with the API changes in 2.9.0
Packit 423ecb
 *              those are private routines at this point
Packit 423ecb
 *
Packit 423ecb
 * Copy: See Copyright for the status of this software.
Packit 423ecb
 *
Packit 423ecb
 * Author: Daniel Veillard
Packit 423ecb
 */
Packit 423ecb
Packit 423ecb
#ifndef __XML_SAVE_H__
Packit 423ecb
#define __XML_SAVE_H__
Packit 423ecb
Packit 423ecb
#include <libxml/tree.h>
Packit 423ecb
Packit 423ecb
#ifdef __cplusplus
Packit 423ecb
extern "C" {
Packit 423ecb
#endif
Packit 423ecb
Packit 423ecb
#ifdef LIBXML_OUTPUT_ENABLED
Packit 423ecb
void xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
Packit 423ecb
                                   xmlAttrPtr attr, const xmlChar * string);
Packit 423ecb
void xmlBufDumpNotationTable(xmlBufPtr buf, xmlNotationTablePtr table);
Packit 423ecb
void xmlBufDumpElementDecl(xmlBufPtr buf, xmlElementPtr elem);
Packit 423ecb
void xmlBufDumpAttributeDecl(xmlBufPtr buf, xmlAttributePtr attr);
Packit 423ecb
void xmlBufDumpEntityDecl(xmlBufPtr buf, xmlEntityPtr ent);
Packit 423ecb
xmlChar *xmlEncodeAttributeEntities(xmlDocPtr doc, const xmlChar *input);
Packit 423ecb
#endif
Packit 423ecb
Packit 423ecb
#ifdef __cplusplus
Packit 423ecb
}
Packit 423ecb
#endif
Packit 423ecb
#endif /* __XML_SAVE_H__ */
Packit 423ecb