3 |
*************************************************/ |
*************************************************/ |
4 |
|
|
5 |
|
|
6 |
#define PCRE_VERSION "2.04 19-Feb-1999" |
#define PCRE_VERSION "2.06 21-Jun-1999" |
7 |
|
|
8 |
|
|
9 |
/* This is a library of functions to support regular expressions whose syntax |
/* This is a library of functions to support regular expressions whose syntax |
92 |
|
|
93 |
/* Magic number to provide a small check against being handed junk. */ |
/* Magic number to provide a small check against being handed junk. */ |
94 |
|
|
95 |
#define MAGIC_NUMBER 0x50435245 /* 'PCRE' */ |
#define MAGIC_NUMBER 0x50435245UL /* 'PCRE' */ |
96 |
|
|
97 |
/* Miscellaneous definitions */ |
/* Miscellaneous definitions */ |
98 |
|
|
262 |
runs on as long as necessary after the end. */ |
runs on as long as necessary after the end. */ |
263 |
|
|
264 |
typedef struct real_pcre { |
typedef struct real_pcre { |
265 |
unsigned int magic_number; |
unsigned long int magic_number; |
266 |
const unsigned char *tables; |
const unsigned char *tables; |
267 |
unsigned short int options; |
unsigned short int options; |
268 |
unsigned char top_bracket; |
unsigned char top_bracket; |