Blame save.h

Packit Service a31ea6
/*
Packit Service a31ea6
 * Summary: Internal Interfaces for saving 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_SAVE_H__
Packit Service a31ea6
#define __XML_SAVE_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
#ifdef LIBXML_OUTPUT_ENABLED
Packit Service a31ea6
void xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
Packit Service a31ea6
                                   xmlAttrPtr attr, const xmlChar * string);
Packit Service a31ea6
void xmlBufDumpNotationTable(xmlBufPtr buf, xmlNotationTablePtr table);
Packit Service a31ea6
void xmlBufDumpElementDecl(xmlBufPtr buf, xmlElementPtr elem);
Packit Service a31ea6
void xmlBufDumpAttributeDecl(xmlBufPtr buf, xmlAttributePtr attr);
Packit Service a31ea6
void xmlBufDumpEntityDecl(xmlBufPtr buf, xmlEntityPtr ent);
Packit Service a31ea6
xmlChar *xmlEncodeAttributeEntities(xmlDocPtr doc, const xmlChar *input);
Packit Service a31ea6
#endif
Packit Service a31ea6
Packit Service a31ea6
#ifdef __cplusplus
Packit Service a31ea6
}
Packit Service a31ea6
#endif
Packit Service a31ea6
#endif /* __XML_SAVE_H__ */
Packit Service a31ea6