2 |
* Perl-Compatible Regular Expressions * |
* Perl-Compatible Regular Expressions * |
3 |
*************************************************/ |
*************************************************/ |
4 |
|
|
5 |
/* Copyright (c) 1997-2000 University of Cambridge */ |
/* Copyright (c) 1997-2001 University of Cambridge */ |
6 |
|
|
7 |
#ifndef _PCRE_H |
#ifndef _PCRE_H |
8 |
#define _PCRE_H |
#define _PCRE_H |
10 |
/* The file pcre.h is build by "configure". Do not edit it; instead |
/* The file pcre.h is build by "configure". Do not edit it; instead |
11 |
make changes to pcre.in. */ |
make changes to pcre.in. */ |
12 |
|
|
13 |
#define PCRE_MAJOR @PCRE_MAJOR@ |
#define PCRE_MAJOR @PCRE_MAJOR@ |
14 |
#define PCRE_MINOR @PCRE_MINOR@ |
#define PCRE_MINOR @PCRE_MINOR@ |
15 |
#define PCRE_DATE @PCRE_DATE@ |
#define PCRE_DATE @PCRE_DATE@ |
16 |
|
|
17 |
/* Win32 uses DLL by default */ |
/* Win32 uses DLL by default */ |
18 |
|
|
74 |
|
|
75 |
/* Types */ |
/* Types */ |
76 |
|
|
77 |
typedef void pcre; |
struct real_pcre; /* declaration; the definition is private */ |
78 |
typedef void pcre_extra; |
struct real_pcre_extra; /* declaration; the definition is private */ |
79 |
|
|
80 |
|
typedef struct real_pcre pcre; |
81 |
|
typedef struct real_pcre_extra pcre_extra; |
82 |
|
|
83 |
/* Store get and free functions. These can be set to alternative malloc/free |
/* Store get and free functions. These can be set to alternative malloc/free |
84 |
functions if required. Some magic is required for Win32 DLL; it is null on |
functions if required. Some magic is required for Win32 DLL; it is null on |
102 |
extern int pcre_get_substring_list(const char *, int *, int, const char ***); |
extern int pcre_get_substring_list(const char *, int *, int, const char ***); |
103 |
extern int pcre_info(const pcre *, int *, int *); |
extern int pcre_info(const pcre *, int *, int *); |
104 |
extern int pcre_fullinfo(const pcre *, const pcre_extra *, int, void *); |
extern int pcre_fullinfo(const pcre *, const pcre_extra *, int, void *); |
105 |
extern unsigned const char *pcre_maketables(void); |
extern const unsigned char *pcre_maketables(void); |
106 |
extern pcre_extra *pcre_study(const pcre *, int, const char **); |
extern pcre_extra *pcre_study(const pcre *, int, const char **); |
107 |
extern const char *pcre_version(void); |
extern const char *pcre_version(void); |
108 |
|
|