| 393 | #endif /* AP_HAS_THREAD_LOCAL && !defined(APREG_NO_THREAD_LOCAL) */ |
| 394 | |
| 395 | AP_DECLARE(int) ap_regexec(const ap_regex_t *preg, const char *string, |
| 396 | apr_size_t nmatch, ap_regmatch_t *pmatch, |
| 397 | int eflags) |
| 398 | { |
| 399 | return ap_regexec_len(preg, string, strlen(string), nmatch, pmatch, |
| 400 | eflags); |
| 401 | } |
| 402 | |
| 403 | AP_DECLARE(int) ap_regexec_len(const ap_regex_t *preg, const char *buff, |
| 404 | apr_size_t len, apr_size_t nmatch, |
no test coverage detected