| 1317 |
pcre_study(const pcre *external_re, int options, const char **errorptr) |
pcre_study(const pcre *external_re, int options, const char **errorptr) |
| 1318 |
#else |
#else |
| 1319 |
PCRE_EXP_DEFN pcre16_extra * PCRE_CALL_CONVENTION |
PCRE_EXP_DEFN pcre16_extra * PCRE_CALL_CONVENTION |
| 1320 |
pcre16_study(const pcre *external_re, int options, const char **errorptr) |
pcre16_study(const pcre16 *external_re, int options, const char **errorptr) |
| 1321 |
#endif |
#endif |
| 1322 |
{ |
{ |
| 1323 |
int min; |
int min; |
| 1328 |
const pcre_uint8 *tables; |
const pcre_uint8 *tables; |
| 1329 |
pcre_uchar *code; |
pcre_uchar *code; |
| 1330 |
compile_data compile_block; |
compile_data compile_block; |
| 1331 |
const real_pcre *re = (const real_pcre *)external_re; |
const REAL_PCRE *re = (const REAL_PCRE *)external_re; |
| 1332 |
|
|
| 1333 |
*errorptr = NULL; |
*errorptr = NULL; |
| 1334 |
|
|