-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathregexp.h
More file actions
36 lines (27 loc) · 737 Bytes
/
regexp.h
File metadata and controls
36 lines (27 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef REGEXP_H_INCLUDED
#define REGEXP_H_INCLUDED
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
#include <libxslt/xsltconfig.h>
#include <libxslt/xsltutils.h>
#include <libxslt/xsltInternals.h>
#include <libxslt/extensions.h>
#include <libexslt/exsltexports.h>
#include <pcre.h>
#include <string.h>
/* make sure init function is exported on win32 */
#if defined(_WIN32)
#define PLUGINPUBFUN __declspec(dllexport)
#else
#define PLUGINPUBFUN
#endif
/**
* EXSLT_REGEXP_NAMESPACE:
*
* Namespace for EXSLT regexp functions
*/
#define EXSLT_REGEXP_NAMESPACE ((const xmlChar *) "http://exslt.org/regular-expressions")
void
PLUGINPUBFUN exslt_org_regular_expressions_init (void);
#endif