2012-07-16 14:52:00 +08:00
|
|
|
/*
|
2012-08-10 10:00:18 +08:00
|
|
|
* Summary: Internal Interfaces for saving in libxml2
|
|
|
|
* Description: this module describes a few interfaces which were
|
2019-09-30 17:04:54 +02:00
|
|
|
* added along with the API changes in 2.9.0
|
2012-08-10 10:00:18 +08:00
|
|
|
* those are private routines at this point
|
2012-07-16 14:52:00 +08:00
|
|
|
*
|
2012-08-10 10:00:18 +08:00
|
|
|
* Copy: See Copyright for the status of this software.
|
2012-07-16 14:52:00 +08:00
|
|
|
*
|
2012-08-10 10:00:18 +08:00
|
|
|
* Author: Daniel Veillard
|
2012-07-16 14:52:00 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_SAVE_H__
|
|
|
|
#define __XML_SAVE_H__
|
|
|
|
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-08-10 10:00:18 +08:00
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
2012-07-16 14:52:00 +08:00
|
|
|
void xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
|
|
|
|
xmlAttrPtr attr, const xmlChar * string);
|
|
|
|
void xmlBufDumpNotationTable(xmlBufPtr buf, xmlNotationTablePtr table);
|
|
|
|
void xmlBufDumpElementDecl(xmlBufPtr buf, xmlElementPtr elem);
|
|
|
|
void xmlBufDumpAttributeDecl(xmlBufPtr buf, xmlAttributePtr attr);
|
|
|
|
void xmlBufDumpEntityDecl(xmlBufPtr buf, xmlEntityPtr ent);
|
2012-08-10 10:00:18 +08:00
|
|
|
#endif
|
2012-07-16 14:52:00 +08:00
|
|
|
|
2019-04-08 14:02:11 +02:00
|
|
|
xmlChar *xmlEncodeAttributeEntities(xmlDocPtr doc, const xmlChar *input);
|
|
|
|
|
2012-07-16 14:52:00 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __XML_SAVE_H__ */
|
|
|
|
|