mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

- release 1.8.2 - HTML handling improvement - new tree handling functions - default namespace on attribute bug fixed - libxml use for C++ fixed (for good this time !) Daniel
27 lines
895 B
C
27 lines
895 B
C
/*
|
|
* debugXML.h : Interfaces to a set of routines used for debugging the tree
|
|
* produced by the XML parser.
|
|
*
|
|
* Daniel Veillard <Daniel.Veillard@w3.org>
|
|
*/
|
|
|
|
#ifndef __DEBUG_XML__
|
|
#define __DEBUG_XML__
|
|
#include "tree.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
extern void xmlDebugDumpString(FILE *output, const xmlChar *str);
|
|
extern void xmlDebugDumpAttr(FILE *output, xmlAttrPtr attr, int depth);
|
|
extern void xmlDebugDumpAttrList(FILE *output, xmlAttrPtr attr, int depth);
|
|
extern void xmlDebugDumpOneNode(FILE *output, xmlNodePtr node, int depth);
|
|
extern void xmlDebugDumpNode(FILE *output, xmlNodePtr node, int depth);
|
|
extern void xmlDebugDumpNodeList(FILE *output, xmlNodePtr node, int depth);
|
|
extern void xmlDebugDumpDocument(FILE *output, xmlDocPtr doc);
|
|
extern void xmlDebugDumpEntities(FILE *output, xmlDocPtr doc);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __DEBUG_XML__ */
|