20 lines
396 B
C
20 lines
396 B
C
/*
|
|
* Summary: API to build regexp automata
|
|
* Description: the API to build regexp automata
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __XML_AUTOMATA_H__
|
|
#define __XML_AUTOMATA_H__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/tree.h>
|
|
|
|
#ifdef LIBXML_REGEXP_ENABLED
|
|
#endif /* LIBXML_REGEXP_ENABLED */
|
|
|
|
#endif /* __XML_AUTOMATA_H__ */
|