blob: de100dc780fcffdc77795d1bd82390323aeaaf0c (
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
|
/* op_reg_common.h
*
* Definitions common to by op.h and regexp.h
*
* Copyright (C) 2010 by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
/* These defines are used in both op.h and regexp.h The definitions use the
* shift form so that ext/B/defsubs_h.PL will pick them up */
#define RXf_PMf_MULTILINE (1 << 0) /* /m */
#define PMf_MULTILINE (1 << 0) /* /m */
#define RXf_PMf_SINGLELINE (1 << 1) /* /s */
#define PMf_SINGLELINE (1 << 1) /* /s */
#define RXf_PMf_FOLD (1 << 2) /* /i */
#define PMf_FOLD (1 << 2) /* /i */
#define RXf_PMf_EXTENDED (1 << 3) /* /x */
#define PMf_EXTENDED (1 << 3) /* /x */
#define RXf_PMf_KEEPCOPY (1 << 4) /* /p */
#define PMf_KEEPCOPY (1 << 4) /* /p */
#define RXf_PMf_LOCALE (1 << 5)
#define PMf_LOCALE (1 << 5)
/* Next available bit after the above. Name begins with '_' so won't be
* exported by B */
#define _RXf_PMf_SHIFT_NEXT 6
|