File: save.h

package info (click to toggle)
libxml2 2.15.2%2Bdfsg-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,036 kB
  • sloc: xml: 305,167; ansic: 138,598; python: 6,692; javascript: 5,897; sh: 4,736; makefile: 1,308
file content (24 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef XML_SAVE_H_PRIVATE__
#define XML_SAVE_H_PRIVATE__

#include <libxml/tree.h>
#include <libxml/xmlsave.h>
#include <libxml/xmlversion.h>

#ifdef LIBXML_OUTPUT_ENABLED

XML_HIDDEN int
xmlSaveNotationDecl(xmlSaveCtxt *ctxt, xmlNotation *cur);
XML_HIDDEN int
xmlSaveNotationTable(xmlSaveCtxt *ctxt, xmlNotationTable *cur);

XML_HIDDEN void
xmlBufAttrSerializeTxtContent(xmlOutputBuffer *buf, xmlDoc *doc,
                              const xmlChar *string);
XML_HIDDEN void
xmlNsListDumpOutput(xmlOutputBuffer *buf, xmlNs *cur);

#endif /* LIBXML_OUTPUT_ENABLED */

#endif /* XML_SAVE_H_PRIVATE__ */