| 23 | #include "httpd.h" |
| 24 | |
| 25 | static apr_status_t rxplus_cleanup(void *preg) |
| 26 | { |
| 27 | ap_regfree((ap_regex_t *) preg); |
| 28 | return APR_SUCCESS; |
| 29 | } |
| 30 | |
| 31 | AP_DECLARE(ap_rxplus_t*) ap_rxplus_compile(apr_pool_t *pool, |
| 32 | const char *pattern) |
nothing calls this directly
no test coverage detected