| 119 |
|
|
| 120 |
case PCRE_INFO_FIRSTTABLE: |
case PCRE_INFO_FIRSTTABLE: |
| 121 |
*((const uschar **)where) = |
*((const uschar **)where) = |
| 122 |
(study != NULL && (study->options & PCRE_STUDY_MAPPED) != 0)? |
(study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)? |
| 123 |
((const pcre_study_data *)extra_data->study_data)->start_bits : NULL; |
((const pcre_study_data *)extra_data->study_data)->start_bits : NULL; |
| 124 |
break; |
break; |
| 125 |
|
|
| 126 |
|
case PCRE_INFO_MINLENGTH: |
| 127 |
|
*((int *)where) = |
| 128 |
|
(study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)? |
| 129 |
|
study->minlength : -1; |
| 130 |
|
break; |
| 131 |
|
|
| 132 |
case PCRE_INFO_LASTLITERAL: |
case PCRE_INFO_LASTLITERAL: |
| 133 |
*((int *)where) = |
*((int *)where) = |