mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
20 lines
438 B
C
20 lines
438 B
C
/*
|
|
* Summary: pattern expression handling
|
|
* Description: allows to compile and test pattern expressions for nodes
|
|
* either in a tree or based on a parser state.
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __XML_PATTERN_H__
|
|
#define __XML_PATTERN_H__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/tree.h>
|
|
#include <libxml/dict.h>
|
|
|
|
|
|
#endif /* __XML_PATTERN_H__ */
|