| 254 | */ |
| 255 | |
| 256 | static apr_status_t regex_cleanup(void *preg) |
| 257 | { |
| 258 | ap_regfree((ap_regex_t *) preg); |
| 259 | return APR_SUCCESS; |
| 260 | } |
| 261 | |
| 262 | AP_DECLARE(ap_regex_t *) ap_pregcomp(apr_pool_t *p, const char *pattern, |
| 263 | int cflags) |
nothing calls this directly
no test coverage detected