2000-06-30 07:41:31 -03:00
|
|
|
/*
|
|
|
|
* Secret Labs' Regular Expression Engine
|
|
|
|
*
|
|
|
|
* regular expression matching engine
|
|
|
|
*
|
|
|
|
* NOTE: This file is generated by sre_constants.py. If you need
|
|
|
|
* to change anything in here, edit sre_constants.py and run it.
|
|
|
|
*
|
|
|
|
* Copyright (c) 1997-2000 by Secret Labs AB. All rights reserved.
|
|
|
|
*
|
|
|
|
* See the _sre.c file for information on usage and redistribution.
|
|
|
|
*/
|
|
|
|
|
2000-03-31 10:59:30 -04:00
|
|
|
#define SRE_OP_FAILURE 0
|
|
|
|
#define SRE_OP_SUCCESS 1
|
|
|
|
#define SRE_OP_ANY 2
|
|
|
|
#define SRE_OP_ASSERT 3
|
2000-06-30 07:41:31 -03:00
|
|
|
#define SRE_OP_ASSERT_NOT 4
|
|
|
|
#define SRE_OP_AT 5
|
|
|
|
#define SRE_OP_BRANCH 6
|
|
|
|
#define SRE_OP_CALL 7
|
|
|
|
#define SRE_OP_CATEGORY 8
|
|
|
|
#define SRE_OP_GROUP 9
|
|
|
|
#define SRE_OP_GROUP_IGNORE 10
|
|
|
|
#define SRE_OP_IN 11
|
|
|
|
#define SRE_OP_IN_IGNORE 12
|
|
|
|
#define SRE_OP_INFO 13
|
|
|
|
#define SRE_OP_JUMP 14
|
|
|
|
#define SRE_OP_LITERAL 15
|
|
|
|
#define SRE_OP_LITERAL_IGNORE 16
|
|
|
|
#define SRE_OP_MARK 17
|
|
|
|
#define SRE_OP_MAX_REPEAT 18
|
|
|
|
#define SRE_OP_MAX_REPEAT_ONE 19
|
|
|
|
#define SRE_OP_MIN_REPEAT 20
|
|
|
|
#define SRE_OP_NOT_LITERAL 21
|
|
|
|
#define SRE_OP_NOT_LITERAL_IGNORE 22
|
|
|
|
#define SRE_OP_NEGATE 23
|
|
|
|
#define SRE_OP_RANGE 24
|
|
|
|
#define SRE_OP_REPEAT 25
|
2000-06-01 14:39:12 -03:00
|
|
|
#define SRE_AT_BEGINNING 0
|
|
|
|
#define SRE_AT_BEGINNING_LINE 1
|
|
|
|
#define SRE_AT_BOUNDARY 2
|
|
|
|
#define SRE_AT_NON_BOUNDARY 3
|
|
|
|
#define SRE_AT_END 4
|
|
|
|
#define SRE_AT_END_LINE 5
|
|
|
|
#define SRE_CATEGORY_DIGIT 0
|
|
|
|
#define SRE_CATEGORY_NOT_DIGIT 1
|
|
|
|
#define SRE_CATEGORY_SPACE 2
|
|
|
|
#define SRE_CATEGORY_NOT_SPACE 3
|
|
|
|
#define SRE_CATEGORY_WORD 4
|
|
|
|
#define SRE_CATEGORY_NOT_WORD 5
|
|
|
|
#define SRE_CATEGORY_LINEBREAK 6
|
|
|
|
#define SRE_CATEGORY_NOT_LINEBREAK 7
|
2000-06-29 05:55:54 -03:00
|
|
|
#define SRE_CATEGORY_LOC_WORD 8
|
|
|
|
#define SRE_CATEGORY_LOC_NOT_WORD 9
|
|
|
|
#define SRE_CATEGORY_UNI_DIGIT 10
|
|
|
|
#define SRE_CATEGORY_UNI_NOT_DIGIT 11
|
|
|
|
#define SRE_CATEGORY_UNI_SPACE 12
|
|
|
|
#define SRE_CATEGORY_UNI_NOT_SPACE 13
|
|
|
|
#define SRE_CATEGORY_UNI_WORD 14
|
|
|
|
#define SRE_CATEGORY_UNI_NOT_WORD 15
|
|
|
|
#define SRE_CATEGORY_UNI_LINEBREAK 16
|
|
|
|
#define SRE_CATEGORY_UNI_NOT_LINEBREAK 17
|
|
|
|
#define SRE_FLAG_TEMPLATE 1
|
|
|
|
#define SRE_FLAG_IGNORECASE 2
|
|
|
|
#define SRE_FLAG_LOCALE 4
|
|
|
|
#define SRE_FLAG_MULTILINE 8
|
|
|
|
#define SRE_FLAG_DOTALL 16
|
|
|
|
#define SRE_FLAG_UNICODE 32
|
|
|
|
#define SRE_FLAG_VERBOSE 64
|