1998-10-28 06:56:57 +08:00
|
|
|
/*
|
|
|
|
* 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"
|
|
|
|
|
1999-12-18 23:32:46 +08:00
|
|
|
#ifdef __cplusplus
|
1999-12-21 23:35:29 +08:00
|
|
|
extern "C" {
|
1999-12-18 23:32:46 +08:00
|
|
|
#endif
|
1999-09-24 06:19:22 +08:00
|
|
|
extern void xmlDebugDumpString(FILE *output, const xmlChar *str);
|
1998-10-28 06:56:57 +08:00
|
|
|
extern void xmlDebugDumpAttr(FILE *output, xmlAttrPtr attr, int depth);
|
|
|
|
extern void xmlDebugDumpAttrList(FILE *output, xmlAttrPtr attr, int depth);
|
1999-07-15 22:24:29 +08:00
|
|
|
extern void xmlDebugDumpOneNode(FILE *output, xmlNodePtr node, int depth);
|
1998-10-28 06:56:57 +08:00
|
|
|
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);
|
1999-12-12 21:03:50 +08:00
|
|
|
extern void xmlDebugDumpEntities(FILE *output, xmlDocPtr doc);
|
1999-12-18 23:32:46 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
1998-10-28 06:56:57 +08:00
|
|
|
#endif /* __DEBUG_XML__ */
|