mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
23 lines
448 B
C
23 lines
448 B
C
|
/*
|
||
|
* Summary: Old SAX version 1 handler, deprecated
|
||
|
* Description: DEPRECATED set of SAX version 1 interfaces used to
|
||
|
* build the DOM tree.
|
||
|
*
|
||
|
* Copy: See Copyright for the status of this software.
|
||
|
*
|
||
|
* Author: Daniel Veillard
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef __XML_SAX_H__
|
||
|
#define __XML_SAX_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <libxml/xmlversion.h>
|
||
|
#include <libxml/parser.h>
|
||
|
#include <libxml/xlink.h>
|
||
|
|
||
|
|
||
|
#endif /* __XML_SAX_H__ */
|