mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 23:54:06 +00:00
25 lines
609 B
C
25 lines
609 B
C
/*
|
|
* Summary: XML Path Language implementation
|
|
* Description: API for the XML Path Language implementation
|
|
*
|
|
* XML Path Language implementation
|
|
* XPath is a language for addressing parts of an XML document,
|
|
* designed to be used by both XSLT and XPointer
|
|
* http://www.w3.org/TR/xpath
|
|
*
|
|
* Implements
|
|
* W3C Recommendation 16 November 1999
|
|
* http://www.w3.org/TR/1999/REC-xpath-19991116
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __XML_XPATH_H__
|
|
#define __XML_XPATH_H__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#endif /* ! __XML_XPATH_H__ */
|