File:  [Public] / XML / debugXML.h
Revision 1.4: download - view: text, annotated - select for diffs
Fri Dec 10 18:18:57 1999 UTC (24 years, 5 months ago) by daniel
Branches: MAIN
CVS tags: HEAD
Work done on the plane, cleanup of parser from CUR_PTR weirdnesses, added xlink modules, and a proper SAX.h header for generated doc, Daniel.

/*
 * 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"

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);
#endif /* __DEBUG_XML__ */

Webmaster