aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/c/regexp/xmlregexp.h
blob: 948e3caa6acc069ef13204bef2539689da25226b (plain)
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
37
38
39
/*
 * Summary: regular expressions handling
 * Description: basic API for libxml regular expressions handling used
 *              for XML Schemas and validation.
 *
 * See COPYING for the status of this software.
 */

#ifndef __XML_REGEXP_H__
#define __XML_REGEXP_H__

#ifdef __cplusplus
extern "C" {
#endif

/**
 * xmlRegexpPtr:
 *
 * A libxml regular expression, they can actually be far more complex
 * thank the POSIX regex expressions.
 */
typedef struct _xmlRegexp xmlRegexp;
typedef xmlRegexp *xmlRegexpPtr;

typedef unsigned char xmlChar;

/*
 * The POSIX like API
 */
xmlRegexpPtr xmlRegexpCompile (const xmlChar *regexp);
void xmlRegFreeRegexp (xmlRegexpPtr regexp);
int xmlRegexpExec (xmlRegexpPtr comp, const xmlChar *value);
int xmlRegexpIsDeterminist (xmlRegexpPtr comp);

#ifdef __cplusplus
}
#endif

#endif /*__XML_REGEXP_H__ */