sre_constants.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Secret Labs' Regular Expression Engine
  3. *
  4. * regular expression matching engine
  5. *
  6. * Auto-generated by Tools/build/generate_sre_constants.py from
  7. * Lib/re/_constants.py.
  8. *
  9. * Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved.
  10. *
  11. * See the sre.c file for information on usage and redistribution.
  12. */
  13. #define SRE_MAGIC 20221023
  14. #define SRE_OP_FAILURE 0
  15. #define SRE_OP_SUCCESS 1
  16. #define SRE_OP_ANY 2
  17. #define SRE_OP_ANY_ALL 3
  18. #define SRE_OP_ASSERT 4
  19. #define SRE_OP_ASSERT_NOT 5
  20. #define SRE_OP_AT 6
  21. #define SRE_OP_BRANCH 7
  22. #define SRE_OP_CATEGORY 8
  23. #define SRE_OP_CHARSET 9
  24. #define SRE_OP_BIGCHARSET 10
  25. #define SRE_OP_GROUPREF 11
  26. #define SRE_OP_GROUPREF_EXISTS 12
  27. #define SRE_OP_IN 13
  28. #define SRE_OP_INFO 14
  29. #define SRE_OP_JUMP 15
  30. #define SRE_OP_LITERAL 16
  31. #define SRE_OP_MARK 17
  32. #define SRE_OP_MAX_UNTIL 18
  33. #define SRE_OP_MIN_UNTIL 19
  34. #define SRE_OP_NOT_LITERAL 20
  35. #define SRE_OP_NEGATE 21
  36. #define SRE_OP_RANGE 22
  37. #define SRE_OP_REPEAT 23
  38. #define SRE_OP_REPEAT_ONE 24
  39. #define SRE_OP_SUBPATTERN 25
  40. #define SRE_OP_MIN_REPEAT_ONE 26
  41. #define SRE_OP_ATOMIC_GROUP 27
  42. #define SRE_OP_POSSESSIVE_REPEAT 28
  43. #define SRE_OP_POSSESSIVE_REPEAT_ONE 29
  44. #define SRE_OP_GROUPREF_IGNORE 30
  45. #define SRE_OP_IN_IGNORE 31
  46. #define SRE_OP_LITERAL_IGNORE 32
  47. #define SRE_OP_NOT_LITERAL_IGNORE 33
  48. #define SRE_OP_GROUPREF_LOC_IGNORE 34
  49. #define SRE_OP_IN_LOC_IGNORE 35
  50. #define SRE_OP_LITERAL_LOC_IGNORE 36
  51. #define SRE_OP_NOT_LITERAL_LOC_IGNORE 37
  52. #define SRE_OP_GROUPREF_UNI_IGNORE 38
  53. #define SRE_OP_IN_UNI_IGNORE 39
  54. #define SRE_OP_LITERAL_UNI_IGNORE 40
  55. #define SRE_OP_NOT_LITERAL_UNI_IGNORE 41
  56. #define SRE_OP_RANGE_UNI_IGNORE 42
  57. #define SRE_AT_BEGINNING 0
  58. #define SRE_AT_BEGINNING_LINE 1
  59. #define SRE_AT_BEGINNING_STRING 2
  60. #define SRE_AT_BOUNDARY 3
  61. #define SRE_AT_NON_BOUNDARY 4
  62. #define SRE_AT_END 5
  63. #define SRE_AT_END_LINE 6
  64. #define SRE_AT_END_STRING 7
  65. #define SRE_AT_LOC_BOUNDARY 8
  66. #define SRE_AT_LOC_NON_BOUNDARY 9
  67. #define SRE_AT_UNI_BOUNDARY 10
  68. #define SRE_AT_UNI_NON_BOUNDARY 11
  69. #define SRE_CATEGORY_DIGIT 0
  70. #define SRE_CATEGORY_NOT_DIGIT 1
  71. #define SRE_CATEGORY_SPACE 2
  72. #define SRE_CATEGORY_NOT_SPACE 3
  73. #define SRE_CATEGORY_WORD 4
  74. #define SRE_CATEGORY_NOT_WORD 5
  75. #define SRE_CATEGORY_LINEBREAK 6
  76. #define SRE_CATEGORY_NOT_LINEBREAK 7
  77. #define SRE_CATEGORY_LOC_WORD 8
  78. #define SRE_CATEGORY_LOC_NOT_WORD 9
  79. #define SRE_CATEGORY_UNI_DIGIT 10
  80. #define SRE_CATEGORY_UNI_NOT_DIGIT 11
  81. #define SRE_CATEGORY_UNI_SPACE 12
  82. #define SRE_CATEGORY_UNI_NOT_SPACE 13
  83. #define SRE_CATEGORY_UNI_WORD 14
  84. #define SRE_CATEGORY_UNI_NOT_WORD 15
  85. #define SRE_CATEGORY_UNI_LINEBREAK 16
  86. #define SRE_CATEGORY_UNI_NOT_LINEBREAK 17
  87. #define SRE_FLAG_TEMPLATE 1
  88. #define SRE_FLAG_IGNORECASE 2
  89. #define SRE_FLAG_LOCALE 4
  90. #define SRE_FLAG_MULTILINE 8
  91. #define SRE_FLAG_DOTALL 16
  92. #define SRE_FLAG_UNICODE 32
  93. #define SRE_FLAG_VERBOSE 64
  94. #define SRE_FLAG_DEBUG 128
  95. #define SRE_FLAG_ASCII 256
  96. #define SRE_INFO_PREFIX 1
  97. #define SRE_INFO_LITERAL 2
  98. #define SRE_INFO_CHARSET 4