| Fredrik Lundh | 43b3b49 | 2000-06-30 10:41:31 +0000 | [diff] [blame] | 1 | /* | 
 | 2 |  * Secret Labs' Regular Expression Engine | 
 | 3 |  * | 
 | 4 |  * regular expression matching engine | 
 | 5 |  * | 
 | 6 |  * NOTE: This file is generated by sre_constants.py.  If you need | 
 | 7 |  * to change anything in here, edit sre_constants.py and run it. | 
 | 8 |  * | 
| Fredrik Lundh | 770617b | 2001-01-14 15:06:11 +0000 | [diff] [blame] | 9 |  * Copyright (c) 1997-2001 by Secret Labs AB.  All rights reserved. | 
| Fredrik Lundh | 43b3b49 | 2000-06-30 10:41:31 +0000 | [diff] [blame] | 10 |  * | 
 | 11 |  * See the _sre.c file for information on usage and redistribution. | 
 | 12 |  */ | 
 | 13 |  | 
| Gustavo Niemeyer | ad3fc44 | 2003-10-17 22:13:16 +0000 | [diff] [blame] | 14 | #define SRE_MAGIC 20031017 | 
| Guido van Rossum | b700df9 | 2000-03-31 14:59:30 +0000 | [diff] [blame] | 15 | #define SRE_OP_FAILURE 0 | 
 | 16 | #define SRE_OP_SUCCESS 1 | 
 | 17 | #define SRE_OP_ANY 2 | 
| Fredrik Lundh | e186983 | 2000-08-01 22:47:49 +0000 | [diff] [blame] | 18 | #define SRE_OP_ANY_ALL 3 | 
 | 19 | #define SRE_OP_ASSERT 4 | 
 | 20 | #define SRE_OP_ASSERT_NOT 5 | 
 | 21 | #define SRE_OP_AT 6 | 
 | 22 | #define SRE_OP_BRANCH 7 | 
 | 23 | #define SRE_OP_CALL 8 | 
 | 24 | #define SRE_OP_CATEGORY 9 | 
 | 25 | #define SRE_OP_CHARSET 10 | 
| Fredrik Lundh | 19af43d | 2001-07-02 16:58:38 +0000 | [diff] [blame] | 26 | #define SRE_OP_BIGCHARSET 11 | 
 | 27 | #define SRE_OP_GROUPREF 12 | 
| Gustavo Niemeyer | ad3fc44 | 2003-10-17 22:13:16 +0000 | [diff] [blame] | 28 | #define SRE_OP_GROUPREF_EXISTS 13 | 
 | 29 | #define SRE_OP_GROUPREF_IGNORE 14 | 
 | 30 | #define SRE_OP_IN 15 | 
 | 31 | #define SRE_OP_IN_IGNORE 16 | 
 | 32 | #define SRE_OP_INFO 17 | 
 | 33 | #define SRE_OP_JUMP 18 | 
 | 34 | #define SRE_OP_LITERAL 19 | 
 | 35 | #define SRE_OP_LITERAL_IGNORE 20 | 
 | 36 | #define SRE_OP_MARK 21 | 
 | 37 | #define SRE_OP_MAX_UNTIL 22 | 
 | 38 | #define SRE_OP_MIN_UNTIL 23 | 
 | 39 | #define SRE_OP_NOT_LITERAL 24 | 
 | 40 | #define SRE_OP_NOT_LITERAL_IGNORE 25 | 
 | 41 | #define SRE_OP_NEGATE 26 | 
 | 42 | #define SRE_OP_RANGE 27 | 
 | 43 | #define SRE_OP_REPEAT 28 | 
 | 44 | #define SRE_OP_REPEAT_ONE 29 | 
 | 45 | #define SRE_OP_SUBPATTERN 30 | 
 | 46 | #define SRE_OP_MIN_REPEAT_ONE 31 | 
| Jeremy Hylton | b1aa195 | 2000-06-01 17:39:12 +0000 | [diff] [blame] | 47 | #define SRE_AT_BEGINNING 0 | 
 | 48 | #define SRE_AT_BEGINNING_LINE 1 | 
| Fredrik Lundh | 770617b | 2001-01-14 15:06:11 +0000 | [diff] [blame] | 49 | #define SRE_AT_BEGINNING_STRING 2 | 
 | 50 | #define SRE_AT_BOUNDARY 3 | 
 | 51 | #define SRE_AT_NON_BOUNDARY 4 | 
 | 52 | #define SRE_AT_END 5 | 
 | 53 | #define SRE_AT_END_LINE 6 | 
 | 54 | #define SRE_AT_END_STRING 7 | 
| Fredrik Lundh | b25e1ad | 2001-03-22 15:50:10 +0000 | [diff] [blame] | 55 | #define SRE_AT_LOC_BOUNDARY 8 | 
 | 56 | #define SRE_AT_LOC_NON_BOUNDARY 9 | 
 | 57 | #define SRE_AT_UNI_BOUNDARY 10 | 
 | 58 | #define SRE_AT_UNI_NON_BOUNDARY 11 | 
| Jeremy Hylton | b1aa195 | 2000-06-01 17:39:12 +0000 | [diff] [blame] | 59 | #define SRE_CATEGORY_DIGIT 0 | 
 | 60 | #define SRE_CATEGORY_NOT_DIGIT 1 | 
 | 61 | #define SRE_CATEGORY_SPACE 2 | 
 | 62 | #define SRE_CATEGORY_NOT_SPACE 3 | 
 | 63 | #define SRE_CATEGORY_WORD 4 | 
 | 64 | #define SRE_CATEGORY_NOT_WORD 5 | 
 | 65 | #define SRE_CATEGORY_LINEBREAK 6 | 
 | 66 | #define SRE_CATEGORY_NOT_LINEBREAK 7 | 
| Fredrik Lundh | 102f3ad | 2000-06-29 08:55:54 +0000 | [diff] [blame] | 67 | #define SRE_CATEGORY_LOC_WORD 8 | 
 | 68 | #define SRE_CATEGORY_LOC_NOT_WORD 9 | 
 | 69 | #define SRE_CATEGORY_UNI_DIGIT 10 | 
 | 70 | #define SRE_CATEGORY_UNI_NOT_DIGIT 11 | 
 | 71 | #define SRE_CATEGORY_UNI_SPACE 12 | 
 | 72 | #define SRE_CATEGORY_UNI_NOT_SPACE 13 | 
 | 73 | #define SRE_CATEGORY_UNI_WORD 14 | 
 | 74 | #define SRE_CATEGORY_UNI_NOT_WORD 15 | 
 | 75 | #define SRE_CATEGORY_UNI_LINEBREAK 16 | 
 | 76 | #define SRE_CATEGORY_UNI_NOT_LINEBREAK 17 | 
 | 77 | #define SRE_FLAG_TEMPLATE 1 | 
 | 78 | #define SRE_FLAG_IGNORECASE 2 | 
 | 79 | #define SRE_FLAG_LOCALE 4 | 
 | 80 | #define SRE_FLAG_MULTILINE 8 | 
 | 81 | #define SRE_FLAG_DOTALL 16 | 
 | 82 | #define SRE_FLAG_UNICODE 32 | 
 | 83 | #define SRE_FLAG_VERBOSE 64 | 
| Fredrik Lundh | 3562f11 | 2000-07-02 12:00:07 +0000 | [diff] [blame] | 84 | #define SRE_INFO_PREFIX 1 | 
 | 85 | #define SRE_INFO_LITERAL 2 | 
 | 86 | #define SRE_INFO_CHARSET 4 |