You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
441 B
19 lines
441 B
#ifndef XML_SAVE_H_PRIVATE__
|
|
#define XML_SAVE_H_PRIVATE__
|
|
|
|
#include <libxml/tree.h>
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
|
|
XML_HIDDEN void
|
|
xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
|
|
xmlAttrPtr attr, const xmlChar * string);
|
|
XML_HIDDEN void
|
|
xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur);
|
|
|
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
|
|
#endif /* XML_SAVE_H_PRIVATE__ */
|
|
|