mirror of
https://github.com/libretro/RetroArch
synced 2025-02-04 03:40:03 +00:00
18 lines
396 B
C
18 lines
396 B
C
/*
|
|
* Summary: Tree debugging APIs
|
|
* Description: Interfaces to a set of routines used for debugging the tree
|
|
* produced by the XML parser.
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __DEBUG_XML__
|
|
#define __DEBUG_XML__
|
|
#include <stdio.h>
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/tree.h>
|
|
|
|
#endif /* __DEBUG_XML__ */
|