/usr/include/libxml2/libxml
NameSizeModeActions
c14n.h31100644editdlrm
catalog.h49580644editdlrm
chvalid.h51590644editdlrm
debugXML.h51810644editdlrm
dict.h17830644editdlrm
DOCBparser.h32770644editdlrm
encoding.h79310644editdlrm
entities.h46720644editdlrm
globals.h146510644editdlrm
hash.h65670644editdlrm
HTMLparser.h92170644editdlrm
HTMLtree.h36850644editdlrm
list.h34220644editdlrm
nanoftp.h33470644editdlrm
nanohttp.h20180644editdlrm
parser.h393050644editdlrm
parserInternals.h175810644editdlrm
pattern.h25860644editdlrm
relaxng.h59580644editdlrm
SAX.h44120644editdlrm
SAX2.h49440644editdlrm
schemasInternals.h260230644editdlrm
schematron.h43930644editdlrm
threads.h18520644editdlrm
tree.h367820644editdlrm
uri.h26640644editdlrm
valid.h138180644editdlrm
xinclude.h29670644editdlrm
xlink.h50510644editdlrm
xmlautomata.h39920644editdlrm
xmlerror.h367700644editdlrm
xmlexports.h38920644editdlrm
xmlIO.h104480644editdlrm
xmlmemory.h59450644editdlrm
xmlmodule.h11710644editdlrm
xmlreader.h125510644editdlrm
xmlregexp.h54580644editdlrm
xmlsave.h22600644editdlrm
xmlschemas.h62020644editdlrm
xmlschemastypes.h48930644editdlrm
xmlstring.h55140644editdlrm
xmlunicode.h99930644editdlrm
xmlversion.h76360644editdlrm
xmlwriter.h211590644editdlrm
xpath.h163000644editdlrm
xpathInternals.h194450644editdlrm
xpointer.h34110644editdlrm
Edit: /usr/include/libxml2/libxml/HTMLtree.h (3685B)
/* * Summary: specific APIs to process HTML tree, especially serialization * Description: this module implements a few function needed to process * tree in an HTML specific way. * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __HTML_TREE_H__ #define __HTML_TREE_H__ #include #include #include #include #ifdef LIBXML_HTML_ENABLED #ifdef __cplusplus extern "C" { #endif /** * HTML_TEXT_NODE: * * Macro. A text node in a HTML document is really implemented * the same way as a text node in an XML document. */ #define HTML_TEXT_NODE XML_TEXT_NODE /** * HTML_ENTITY_REF_NODE: * * Macro. An entity reference in a HTML document is really implemented * the same way as an entity reference in an XML document. */ #define HTML_ENTITY_REF_NODE XML_ENTITY_REF_NODE /** * HTML_COMMENT_NODE: * * Macro. A comment in a HTML document is really implemented * the same way as a comment in an XML document. */ #define HTML_COMMENT_NODE XML_COMMENT_NODE /** * HTML_PRESERVE_NODE: * * Macro. A preserved node in a HTML document is really implemented * the same way as a CDATA section in an XML document. */ #define HTML_PRESERVE_NODE XML_CDATA_SECTION_NODE /** * HTML_PI_NODE: * * Macro. A processing instruction in a HTML document is really implemented * the same way as a processing instruction in an XML document. */ #define HTML_PI_NODE XML_PI_NODE XMLPUBFUN htmlDocPtr XMLCALL htmlNewDoc (const xmlChar *URI, const xmlChar *ExternalID); XMLPUBFUN htmlDocPtr XMLCALL htmlNewDocNoDtD (const xmlChar *URI, const xmlChar *ExternalID); XMLPUBFUN const xmlChar * XMLCALL htmlGetMetaEncoding (htmlDocPtr doc); XMLPUBFUN int XMLCALL htmlSetMetaEncoding (htmlDocPtr doc, const xmlChar *encoding); #ifdef LIBXML_OUTPUT_ENABLED XMLPUBFUN void XMLCALL htmlDocDumpMemory (xmlDocPtr cur, xmlChar **mem, int *size); XMLPUBFUN void XMLCALL htmlDocDumpMemoryFormat (xmlDocPtr cur, xmlChar **mem, int *size, int format); XMLPUBFUN int XMLCALL htmlDocDump (FILE *f, xmlDocPtr cur); XMLPUBFUN int XMLCALL htmlSaveFile (const char *filename, xmlDocPtr cur); XMLPUBFUN int XMLCALL htmlNodeDump (xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur); XMLPUBFUN void XMLCALL htmlNodeDumpFile (FILE *out, xmlDocPtr doc, xmlNodePtr cur); XMLPUBFUN int XMLCALL htmlNodeDumpFileFormat (FILE *out, xmlDocPtr doc, xmlNodePtr cur, const char *encoding, int format); XMLPUBFUN int XMLCALL htmlSaveFileEnc (const char *filename, xmlDocPtr cur, const char *encoding); XMLPUBFUN int XMLCALL htmlSaveFileFormat (const char *filename, xmlDocPtr cur, const char *encoding, int format); XMLPUBFUN void XMLCALL htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, const char *encoding, int format); XMLPUBFUN void XMLCALL htmlDocContentDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding); XMLPUBFUN void XMLCALL htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding, int format); XMLPUBFUN void XMLCALL htmlNodeDumpOutput (xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, const char *encoding); #endif /* LIBXML_OUTPUT_ENABLED */ XMLPUBFUN int XMLCALL htmlIsBooleanAttr (const xmlChar *name); #ifdef __cplusplus } #endif #endif /* LIBXML_HTML_ENABLED */ #endif /* __HTML_TREE_H__ */