mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
21 lines
470 B
C
21 lines
470 B
C
/*
|
|
* Summary: implementation of XInclude
|
|
* Description: API to handle XInclude processing,
|
|
* implements the
|
|
* World Wide Web Consortium Last Call Working Draft 10 November 2003
|
|
* http://www.w3.org/TR/2003/WD-xinclude-20031110
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __XML_XINCLUDE_H__
|
|
#define __XML_XINCLUDE_H__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/tree.h>
|
|
|
|
|
|
#endif /* __XML_XINCLUDE_H__ */
|