| 594 |
#define PCRE_STARTLINE 0x0008 /* start after \n for multiline */ |
#define PCRE_STARTLINE 0x0008 /* start after \n for multiline */ |
| 595 |
#define PCRE_JCHANGED 0x0010 /* j option used in regex */ |
#define PCRE_JCHANGED 0x0010 /* j option used in regex */ |
| 596 |
#define PCRE_HASCRORLF 0x0020 /* explicit \r or \n in pattern */ |
#define PCRE_HASCRORLF 0x0020 /* explicit \r or \n in pattern */ |
| 597 |
|
#define PCRE_HASTHEN 0x0040 /* pattern contains (*THEN) */ |
| 598 |
|
|
| 599 |
/* Flags for the "extra" block produced by pcre_study(). */ |
/* Flags for the "extra" block produced by pcre_study(). */ |
| 600 |
|
|
| 1821 |
BOOL notempty_atstart; /* Empty string match at start not wanted */ |
BOOL notempty_atstart; /* Empty string match at start not wanted */ |
| 1822 |
BOOL hitend; /* Hit the end of the subject at some point */ |
BOOL hitend; /* Hit the end of the subject at some point */ |
| 1823 |
BOOL bsr_anycrlf; /* \R is just any CRLF, not full Unicode */ |
BOOL bsr_anycrlf; /* \R is just any CRLF, not full Unicode */ |
| 1824 |
|
BOOL hasthen; /* Pattern contains (*THEN) */ |
| 1825 |
const uschar *start_code; /* For use when recursing */ |
const uschar *start_code; /* For use when recursing */ |
| 1826 |
USPTR start_subject; /* Start of the subject string */ |
USPTR start_subject; /* Start of the subject string */ |
| 1827 |
USPTR end_subject; /* End of the subject string */ |
USPTR end_subject; /* End of the subject string */ |