5 |
/* This is the public header file for the PCRE library, to be #included by |
/* This is the public header file for the PCRE library, to be #included by |
6 |
applications that call the PCRE functions. |
applications that call the PCRE functions. |
7 |
|
|
8 |
Copyright (c) 1997-2008 University of Cambridge |
Copyright (c) 1997-2009 University of Cambridge |
9 |
|
|
10 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
11 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
95 |
extern "C" { |
extern "C" { |
96 |
#endif |
#endif |
97 |
|
|
98 |
/* Options */ |
/* Options. Some are compile-time only, some are run-time only, and some are |
99 |
|
both, so we keep them all distinct. */ |
100 |
|
|
101 |
#define PCRE_CASELESS 0x00000001 |
#define PCRE_CASELESS 0x00000001 |
102 |
#define PCRE_MULTILINE 0x00000002 |
#define PCRE_MULTILINE 0x00000002 |
125 |
#define PCRE_NEWLINE_ANYCRLF 0x00500000 |
#define PCRE_NEWLINE_ANYCRLF 0x00500000 |
126 |
#define PCRE_BSR_ANYCRLF 0x00800000 |
#define PCRE_BSR_ANYCRLF 0x00800000 |
127 |
#define PCRE_BSR_UNICODE 0x01000000 |
#define PCRE_BSR_UNICODE 0x01000000 |
128 |
|
#define PCRE_JAVASCRIPT_COMPAT 0x02000000 |
129 |
|
#define PCRE_NO_START_OPTIMIZE 0x04000000 |
130 |
|
#define PCRE_NO_START_OPTIMISE 0x04000000 |
131 |
|
|
132 |
/* Exec-time and get/set-time error codes */ |
/* Exec-time and get/set-time error codes */ |
133 |
|
|