/
usr
/
include
/
libxml2
/
libxml
/
/usr/include/libxml2/libxml
mkdir
upload
Name
Size
Mode
Actions
c14n.h
3110
0644
edit
dl
rm
catalog.h
4958
0644
edit
dl
rm
chvalid.h
5159
0644
edit
dl
rm
debugXML.h
5181
0644
edit
dl
rm
dict.h
1783
0644
edit
dl
rm
DOCBparser.h
3277
0644
edit
dl
rm
encoding.h
7931
0644
edit
dl
rm
entities.h
4672
0644
edit
dl
rm
globals.h
14651
0644
edit
dl
rm
hash.h
6567
0644
edit
dl
rm
HTMLparser.h
9217
0644
edit
dl
rm
HTMLtree.h
3685
0644
edit
dl
rm
list.h
3422
0644
edit
dl
rm
nanoftp.h
3347
0644
edit
dl
rm
nanohttp.h
2018
0644
edit
dl
rm
parser.h
39305
0644
edit
dl
rm
parserInternals.h
17581
0644
edit
dl
rm
pattern.h
2586
0644
edit
dl
rm
relaxng.h
5958
0644
edit
dl
rm
SAX.h
4412
0644
edit
dl
rm
SAX2.h
4944
0644
edit
dl
rm
schemasInternals.h
26023
0644
edit
dl
rm
schematron.h
4393
0644
edit
dl
rm
threads.h
1852
0644
edit
dl
rm
tree.h
36782
0644
edit
dl
rm
uri.h
2664
0644
edit
dl
rm
valid.h
13818
0644
edit
dl
rm
xinclude.h
2967
0644
edit
dl
rm
xlink.h
5051
0644
edit
dl
rm
xmlautomata.h
3992
0644
edit
dl
rm
xmlerror.h
36770
0644
edit
dl
rm
xmlexports.h
3892
0644
edit
dl
rm
xmlIO.h
10448
0644
edit
dl
rm
xmlmemory.h
5945
0644
edit
dl
rm
xmlmodule.h
1171
0644
edit
dl
rm
xmlreader.h
12551
0644
edit
dl
rm
xmlregexp.h
5458
0644
edit
dl
rm
xmlsave.h
2260
0644
edit
dl
rm
xmlschemas.h
6202
0644
edit
dl
rm
xmlschemastypes.h
4893
0644
edit
dl
rm
xmlstring.h
5514
0644
edit
dl
rm
xmlunicode.h
9993
0644
edit
dl
rm
xmlversion.h
7636
0644
edit
dl
rm
xmlwriter.h
21159
0644
edit
dl
rm
xpath.h
16300
0644
edit
dl
rm
xpathInternals.h
19445
0644
edit
dl
rm
xpointer.h
3411
0644
edit
dl
rm
Edit:
/usr/include/libxml2/libxml/xmlsave.h
(2260B)
/* * Summary: the XML document serializer * Description: API to save document or subtree of document * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __XML_XMLSAVE_H__ #define __XML_XMLSAVE_H__ #include <libxml/xmlversion.h> #include <libxml/tree.h> #include <libxml/encoding.h> #include <libxml/xmlIO.h> #ifdef LIBXML_OUTPUT_ENABLED #ifdef __cplusplus extern "C" { #endif /** * xmlSaveOption: * * This is the set of XML save options that can be passed down * to the xmlSaveToFd() and similar calls. */ typedef enum { XML_SAVE_FORMAT = 1<<0, /* format save output */ XML_SAVE_NO_DECL = 1<<1, /* drop the xml declaration */ XML_SAVE_NO_EMPTY = 1<<2, /* no empty tags */ XML_SAVE_NO_XHTML = 1<<3, /* disable XHTML1 specific rules */ XML_SAVE_XHTML = 1<<4, /* force XHTML1 specific rules */ XML_SAVE_AS_XML = 1<<5, /* force XML serialization on HTML doc */ XML_SAVE_AS_HTML = 1<<6 /* force HTML serialization on XML doc */ } xmlSaveOption; typedef struct _xmlSaveCtxt xmlSaveCtxt; typedef xmlSaveCtxt *xmlSaveCtxtPtr; XMLPUBFUN xmlSaveCtxtPtr XMLCALL xmlSaveToFd (int fd, const char *encoding, int options); XMLPUBFUN xmlSaveCtxtPtr XMLCALL xmlSaveToFilename (const char *filename, const char *encoding, int options); XMLPUBFUN xmlSaveCtxtPtr XMLCALL xmlSaveToBuffer (xmlBufferPtr buffer, const char *encoding, int options); XMLPUBFUN xmlSaveCtxtPtr XMLCALL xmlSaveToIO (xmlOutputWriteCallback iowrite, xmlOutputCloseCallback ioclose, void *ioctx, const char *encoding, int options); XMLPUBFUN long XMLCALL xmlSaveDoc (xmlSaveCtxtPtr ctxt, xmlDocPtr doc); XMLPUBFUN long XMLCALL xmlSaveTree (xmlSaveCtxtPtr ctxt, xmlNodePtr node); XMLPUBFUN int XMLCALL xmlSaveFlush (xmlSaveCtxtPtr ctxt); XMLPUBFUN int XMLCALL xmlSaveClose (xmlSaveCtxtPtr ctxt); XMLPUBFUN int XMLCALL xmlSaveSetEscape (xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape); XMLPUBFUN int XMLCALL xmlSaveSetAttrEscape (xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape); #ifdef __cplusplus } #endif #endif /* LIBXML_OUTPUT_ENABLED */ #endif /* __XML_XMLSAVE_H__ */
Save
cmd:
run